60 lines
1.1 KiB
Vue
60 lines
1.1 KiB
Vue
<template>
|
|
<view>
|
|
<view class="clauseCont">
|
|
<rich-text :nodes="clauseData"></rich-text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
secretService
|
|
} from '@/apis/interfaces/auth'
|
|
export default {
|
|
data() {
|
|
return {
|
|
clauseData: [] //服务条款
|
|
};
|
|
},
|
|
onLoad(e) {
|
|
if(e.name === 'service'){
|
|
uni.setNavigationBarTitle({
|
|
title:'用户服务协议'
|
|
})
|
|
}else{
|
|
uni.setNavigationBarTitle({
|
|
title:'用户隐私协议'
|
|
})
|
|
}
|
|
// 获取服务条款
|
|
this.clauseInfo(e.name)
|
|
},
|
|
methods: {
|
|
// 服务条款
|
|
clauseInfo(name) {
|
|
secretService(name).then(res => {
|
|
this.clauseData = res.content.replace(/\<img/gi,
|
|
'<img style="max-width:100%; height:auto; vertical-align: top;"')
|
|
}).catch(err => {
|
|
uni.showToast({
|
|
icon: 'none',
|
|
title: err.message
|
|
})
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: $uni-bg-color;
|
|
}
|
|
|
|
.clauseCont {
|
|
padding: $padding + 10 $padding * 2;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|