2024-03-21 17:52:58 +08:00
|
|
|
<template>
|
|
|
|
<view class="content">
|
|
|
|
<jyf-parser :html="content" ref="article" :tag-style="tagStyle"></jyf-parser>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-03-21 18:05:36 +08:00
|
|
|
|
2024-03-21 17:52:58 +08:00
|
|
|
import parser from "@/components/jyf-parser/jyf-parser";
|
|
|
|
import {
|
|
|
|
getAgreementApi,
|
|
|
|
} from '@/api/user.js';
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
"jyf-parser": parser
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
tagStyle: {
|
|
|
|
img: 'width:100%;display:block;',
|
|
|
|
table: 'width:100%',
|
|
|
|
video: 'width:100%'
|
|
|
|
},
|
|
|
|
content: ``
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
getAgreementApi('sys_user_agree').then(res => {
|
|
|
|
this.content = res.data.sys_user_agree
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.content {
|
|
|
|
padding: 40rpx 30rpx;
|
|
|
|
line-height: 2;
|
|
|
|
}
|
|
|
|
</style>
|