12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <view>
- <!-- #ifdef MP || APP-PLUS -->
- <view class="sys-head">
- <view class="sys-bar" :style="{height:sysHeight}"></view>
- <view class="sys-title">
- {{type==='privacy'?'隐私协议':'用户协议'}}
- <text class="iconfont icon-fanhui1" @click="goBack"></text>
- </view>
- </view>
- <!-- #endif -->
- <view class="content">
- <jyf-parser :html="content" ref="article" :tag-style="tagStyle"></jyf-parser>
- </view>
- </view>
- </template>
- <script>
- let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
- 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: ``,
- sysHeight: sysHeight,
- type:''
- }
- },
- onLoad(e) {
- this.type = e.type;
- 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() {},
- methods: {
- goBack(){
- uni.navigateBack({
- delta: 1
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- page{
- background-color: #fff;
- }
- .content {
- padding: 80px 30rpx 40rpx 30rpx;
- line-height: 2;
- }
- .sys-head {
- position: fixed;
- width: 100%;
- background-color: #fff;
- .sys-title{
- height: 43px;
- line-height: 43px;
- text-align: center;
- position: relative;
- .iconfont{
- position: absolute;
- left:20rpx;
- }
- }
- }
- </style>
|