调用飞猴用户服务协议、飞猴隐私政策

master
chen 2022-03-21 16:36:07 +08:00
parent 4ea5a4223c
commit b105715ccc
2 changed files with 25 additions and 5 deletions

View File

@ -1,6 +1,11 @@
<template>
<view>
<status-nav :navBarTitle="title" returnColor="#c2c2c2"></status-nav>
<container-subgroup>
<view slot="content" style="margin: 0 -30rpx;" class="bacf">
</view>
</container-subgroup>
</view>
</template>
@ -8,11 +13,24 @@
export default {
data(){
return {
title:'',//
richText:''//
}
},
onLoad() {
onLoad(options) {
options.type*1 ? this.title = '飞猴隐私政策' : this.title = '飞猴用户服务协议';
this.checkAgreement(options.type);
},
methods:{
checkAgreement(type){
console.log(type,26);
let url = type*1 ? '/universal/api.login/register_user_agreement' : '/universal/api.login/register_privacy_agreement';
this.$requst.post(url).then(res=>{
if(res.code==1) {
// this.richText =
} else this.$toolAll.tools.showToast(res.msg);
})
}
}
}
</script>

View File

@ -266,7 +266,9 @@
},
//
goXY(index){
console.log(index);
uni.navigateTo({
url:`/pages/login/agreement?type=${index}`
})
}
}
}