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