|
|
- <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>
|