兼兼街公众号代码
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.
 
 
 

36 lines
514 B

<template>
<view class="xieyi-page">
<u-parse :content="dataInfo.value"></u-parse>
</view>
</template>
<script>
export default{
data(){
return{
dataInfo:{}
}
},
onLoad() {
this.getfindAgree()
},
// 隐藏微信h5的标题栏
onReady() {
this.$com.displayNav()
},
methods:{
getfindAgree(){
this.$api('findAgree')
.then(res=>{
this.dataInfo = res.result;
})
}
}
}
</script>
<style lang="scss" scoped>
.xieyi-page {
padding: 10rpx 20rpx;
}
</style>