You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
569 B

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