dengrui/pagesB/platformDescription/platformDescription.vue

43 lines
983 B
Vue

<template>
<view class="">
<!-- 使用标题栏 -->
<status-nav :statusBackw="true" :whereCome="0" :statusTitle="true" :title-val="'平台说明'" :tabcolor="'#ffffff'"></status-nav>
<view :style="{paddingTop:statusHNH+'px'}">
<view class="margin20">
<view style="word-break: break-all;">
<rich-text :nodes="pcontent"></rich-text>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
pcontent:'',
statusHNH:uni.getStorageSync('statusHNH')
}
},
onShow() {
this.$toolAll.tools.guoq()
},
onLoad() {
this.$requst.post('user/description').then(res=>{
// console.log(res);
if(res.code==0){
this.pcontent = res.data.content
}
},error=>{})
},
methods: {
}
}
</script>
<style>
page{background-color: #FFFFFF;}
</style>