123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view style="padding: 24rpx;" v-html="content">
-
- </view>
- </template>
- <script>
- export default {
- data(){
- return{
- type:1,
- content:''
- }
- },
- onLoad(option) {
- this.type = option.type
- this.getdata()
- },
- onShow() {
- if(this.type == 1){
- uni.setNavigationBarTitle({
- title:'用户协议'
- })
- }
- if(this.type == 2){
- uni.setNavigationBarTitle({
- title:' 隐私政策'
- })
- }
- if(this.type == 3){
- uni.setNavigationBarTitle({
- title:' 报备活动规则'
- })
- }
- },
- methods:{
- getdata(){
- if(this.type == 1){
- this.$u.post('/api/Index/platform_config').then(res => {
- const regex = new RegExp('<img', 'gi')
- this.content = res.data.agreement.replace(regex, `<img style="max-width: 100%; height: auto"`)
- })
- }
- if(this.type == 2){
- this.$u.post('/api/Index/platform_config').then(res => {
- const regex = new RegExp('<img', 'gi')
- this.content = res.data.privacy_policy.replace(regex, `<img style="max-width: 100%; height: auto"`)
- })
- }
- if(this.type == 3){
- this.$u.post('/api/Index/platform_config').then(res => {
- const regex = new RegExp('<img', 'gi')
- this.content = res.data.report_rule.replace(regex, `<img style="max-width: 100%; height: auto"`)
- })
- }
- }
- }
- }
- </script>
- <style lang="scss">
-
- </style>
|