3 Commits
master ... qxf

Author SHA1 Message Date
亓雪峰
6ed8f3b89e Update index.vue 2020-12-07 17:13:37 +08:00
亓雪峰
fabea38a47 Update manifest.json 2020-12-07 17:13:34 +08:00
亓雪峰
1ac89c4f88 用户协议和隐私政策 2020-12-03 21:50:39 +08:00
5 changed files with 33 additions and 492 deletions

View File

@@ -3,7 +3,7 @@
"appid" : "__UNI__EA895BE",
"description" : "",
"versionName" : "1.0.1",
"versionCode" : 103,
"versionCode" : 106,
"transformPx" : false,
/* 5+App */
"app-plus" : {
@@ -110,13 +110,13 @@
"splashscreen" : {
"iosStyle" : "storyboard",
"ios" : {
"storyboard" : "/Users/xf/workspace/wwwroot/deming-uniapp/static/CustomStoryboard.zip"
"storyboard" : "../deming-uniapp/static/CustomStoryboard.zip"
},
"androidStyle" : "default",
"androidStyle" : "common",
"android" : {
"hdpi" : "/Users/xf/workspace/wwwroot/deming-uniapp/static/app/start/480x762.png",
"xhdpi" : "/Users/xf/workspace/wwwroot/deming-uniapp/static/app/start/720x1242.png",
"xxhdpi" : "/Users/xf/workspace/wwwroot/deming-uniapp/static/app/start/1080x1882.png"
"hdpi" : "../deming-uniapp/static/app/start/480x762.png",
"xhdpi" : "../deming-uniapp/static/app/start/720x1242.png",
"xxhdpi" : "../deming-uniapp/static/app/start/1080x1882.png"
}
}
}

File diff suppressed because one or more lines are too long

View File

@@ -93,12 +93,17 @@ export default {
timer: null,
is_sendcode: false, // 60s
time_count: 60,
consentPact: true,
pactList: [{
"text": "《用户协议》"
},{
"text":"《隐私政策》"
}]
consentPact: false,
pactList: [
{
"id" : 1,
"text": "《用户协议》"
},
{
"id":2,
"text":"《隐私政策》"
},
]
};
},
methods: {
@@ -272,21 +277,23 @@ export default {
moveHandle(){
return;
},
viewAgreement(index) {
console.log(index);
if (index == 0) {
viewAgreement(id) {
console.log(id);
if (id == 1) {
this.$u.route({
url: '/pages/login/agreements',
params: {
id:1,
title: "用户协议"
}
});
}
if (index == 1) {
if (id == 2) {
this.$u.route({
url: '/pages/login/privacy_policy',
params: {
id:2,
title: "隐私政策"
}
});

File diff suppressed because one or more lines are too long

View File

@@ -159,6 +159,7 @@ export default {
this.$u.route({
url: '/pages/login/agreements',
params: {
id: 1,
title: "用户协议"
}
});