12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view style="line-height: 26px;padding: 32upx;" class="home1">
- <!-- <view v-html="tit"> </view> -->
- <view style="font-size: 28upx;" v-html="content"></view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- tit: '',
- content: ''
- }
- },
- onLoad() {
- this.getGuize();
- },
- methods: {
- getGuize() {
- this.$Request.getT('/app/common/type/323').then(res => {
- if (res.code == 0) {
- if (res.data && res.data.value) {
- this.content = res.data.value;
- }
- }
- });
- }
- }
- }
- </script>
- <style>
- page {
- background: #ffffff;
- }
- </style>
|