qxf #116
@ -3,7 +3,7 @@
|
|||||||
"appid" : "__UNI__EA895BE",
|
"appid" : "__UNI__EA895BE",
|
||||||
"description" : "",
|
"description" : "",
|
||||||
"versionName" : "1.0.1",
|
"versionName" : "1.0.1",
|
||||||
"versionCode" : 101,
|
"versionCode" : 103,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
/* 5+App特有相关 */
|
/* 5+App特有相关 */
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
|
14
pages.json
14
pages.json
@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/login/agreements",
|
"path": "pages/login/agreements",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "用户协议与隐私政策",
|
"navigationBarTitleText": "用户协议",
|
||||||
"app-plus": {
|
"app-plus": {
|
||||||
"titleNView": {
|
"titleNView": {
|
||||||
"backgroundColor": "#FFFFFF",
|
"backgroundColor": "#FFFFFF",
|
||||||
@ -24,6 +24,18 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/login/privacy_policy",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "隐私政策",
|
||||||
|
"app-plus": {
|
||||||
|
"titleNView": {
|
||||||
|
"backgroundColor": "#FFFFFF",
|
||||||
|
"titleColor": "#333333"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/release/tosign",
|
"path": "pages/release/tosign",
|
||||||
|
@ -95,7 +95,9 @@ export default {
|
|||||||
time_count: 60,
|
time_count: 60,
|
||||||
consentPact: true,
|
consentPact: true,
|
||||||
pactList: [{
|
pactList: [{
|
||||||
"text": "《用户协议与隐私政策》"
|
"text": "《用户协议》"
|
||||||
|
},{
|
||||||
|
"text":"《隐私政策》"
|
||||||
}]
|
}]
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@ -269,15 +271,27 @@ export default {
|
|||||||
},
|
},
|
||||||
moveHandle(){
|
moveHandle(){
|
||||||
return;
|
return;
|
||||||
},
|
},
|
||||||
viewAgreement(index) {
|
viewAgreement(index) {
|
||||||
this.$u.route({
|
console.log(index);
|
||||||
url: '/pages/login/agreements',
|
if (index == 0) {
|
||||||
params: {
|
this.$u.route({
|
||||||
title: "用户协议与隐私政策"
|
url: '/pages/login/agreements',
|
||||||
}
|
params: {
|
||||||
});
|
title: "用户协议"
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (index == 1) {
|
||||||
|
this.$u.route({
|
||||||
|
url: '/pages/login/privacy_policy',
|
||||||
|
params: {
|
||||||
|
title: "隐私政策"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
let token = uni.getStorageSync('token');
|
let token = uni.getStorageSync('token');
|
||||||
|
37
pages/login/privacy_policy.vue
Normal file
37
pages/login/privacy_policy.vue
Normal file
File diff suppressed because one or more lines are too long
@ -27,8 +27,12 @@
|
|||||||
<text>用户反馈</text>
|
<text>用户反馈</text>
|
||||||
<image src="/static/image/user/1.png"></image>
|
<image src="/static/image/user/1.png"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="nav" @click="viewAgreement()">
|
<view class="nav" @click="viewAgreement(0)">
|
||||||
<text>用户协议与隐私政策</text>
|
<text>用户协议</text>
|
||||||
|
<image src="/static/image/user/1.png"></image>
|
||||||
|
</view>
|
||||||
|
<view class="nav" @click="viewAgreement(1)">
|
||||||
|
<text>隐私政策</text>
|
||||||
<image src="/static/image/user/1.png"></image>
|
<image src="/static/image/user/1.png"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="nav" @click="clearCache">
|
<view class="nav" @click="clearCache">
|
||||||
@ -147,13 +151,27 @@ export default {
|
|||||||
url: '/pages/user/' + url
|
url: '/pages/user/' + url
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
viewAgreement() {
|
viewAgreement(index) {
|
||||||
|
if (index == 0) {
|
||||||
|
|
||||||
|
|
||||||
this.$u.route({
|
this.$u.route({
|
||||||
url: '/pages/login/agreements',
|
url: '/pages/login/agreements',
|
||||||
params: {
|
params: {
|
||||||
title: "用户协议与隐私政策"
|
title: "用户协议"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
if (index == 1) {
|
||||||
|
|
||||||
|
|
||||||
|
this.$u.route({
|
||||||
|
url: '/pages/login/privacy_policy',
|
||||||
|
params: {
|
||||||
|
title: "隐私政策"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user