1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view class="content">
- <jyf-parser :html="content" ref="article" :tag-style="tagStyle"></jyf-parser>
- </view>
- </template>
- <script>
- import parser from "@/components/jyf-parser/jyf-parser";
- import {
- getUserAgreement,
- } 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: ``
- }
- },
- onLoad(e) {
- if(e){
- getUserAgreement(e.type).then(res => {
- this.content = res.data.content
- }).catch(err => {
- that.$util.Tips({
- title: err.msg
- });
- })
- }else{
- getUserAgreement('privacy').then(res => {
- this.content = res.data.content
- }).catch(err => {
- that.$util.Tips({
- title: err.msg
- });
- })
- }
- },
- mounted() {
-
- }
- }
- </script>
- <style scoped>
- page{
- background-color: #fff;
- }
- .content {
- padding: 40rpx 30rpx;
- line-height: 2;
- }
- </style>
|