Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ed8f3b89e | ||
|
|
fabea38a47 | ||
|
|
1ac89c4f88 |
@@ -3,7 +3,7 @@
|
|||||||
"appid" : "__UNI__EA895BE",
|
"appid" : "__UNI__EA895BE",
|
||||||
"description" : "",
|
"description" : "",
|
||||||
"versionName" : "1.0.1",
|
"versionName" : "1.0.1",
|
||||||
"versionCode" : 103,
|
"versionCode" : 106,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
/* 5+App特有相关 */
|
/* 5+App特有相关 */
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
@@ -110,13 +110,13 @@
|
|||||||
"splashscreen" : {
|
"splashscreen" : {
|
||||||
"iosStyle" : "storyboard",
|
"iosStyle" : "storyboard",
|
||||||
"ios" : {
|
"ios" : {
|
||||||
"storyboard" : "/Users/xf/workspace/wwwroot/deming-uniapp/static/CustomStoryboard.zip"
|
"storyboard" : "../deming-uniapp/static/CustomStoryboard.zip"
|
||||||
},
|
},
|
||||||
"androidStyle" : "default",
|
"androidStyle" : "common",
|
||||||
"android" : {
|
"android" : {
|
||||||
"hdpi" : "/Users/xf/workspace/wwwroot/deming-uniapp/static/app/start/480x762.png",
|
"hdpi" : "../deming-uniapp/static/app/start/480x762.png",
|
||||||
"xhdpi" : "/Users/xf/workspace/wwwroot/deming-uniapp/static/app/start/720x1242.png",
|
"xhdpi" : "../deming-uniapp/static/app/start/720x1242.png",
|
||||||
"xxhdpi" : "/Users/xf/workspace/wwwroot/deming-uniapp/static/app/start/1080x1882.png"
|
"xxhdpi" : "../deming-uniapp/static/app/start/1080x1882.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -93,12 +93,17 @@ export default {
|
|||||||
timer: null,
|
timer: null,
|
||||||
is_sendcode: false, // 60s
|
is_sendcode: false, // 60s
|
||||||
time_count: 60,
|
time_count: 60,
|
||||||
consentPact: true,
|
consentPact: false,
|
||||||
pactList: [{
|
pactList: [
|
||||||
|
{
|
||||||
|
"id" : 1,
|
||||||
"text": "《用户协议》"
|
"text": "《用户协议》"
|
||||||
},{
|
},
|
||||||
|
{
|
||||||
|
"id":2,
|
||||||
"text":"《隐私政策》"
|
"text":"《隐私政策》"
|
||||||
}]
|
},
|
||||||
|
]
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -272,21 +277,23 @@ export default {
|
|||||||
moveHandle(){
|
moveHandle(){
|
||||||
return;
|
return;
|
||||||
},
|
},
|
||||||
viewAgreement(index) {
|
viewAgreement(id) {
|
||||||
console.log(index);
|
console.log(id);
|
||||||
if (index == 0) {
|
if (id == 1) {
|
||||||
this.$u.route({
|
this.$u.route({
|
||||||
url: '/pages/login/agreements',
|
url: '/pages/login/agreements',
|
||||||
params: {
|
params: {
|
||||||
|
id:1,
|
||||||
title: "用户协议"
|
title: "用户协议"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (index == 1) {
|
if (id == 2) {
|
||||||
this.$u.route({
|
this.$u.route({
|
||||||
url: '/pages/login/privacy_policy',
|
url: '/pages/login/privacy_policy',
|
||||||
params: {
|
params: {
|
||||||
|
id:2,
|
||||||
title: "隐私政策"
|
title: "隐私政策"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -159,6 +159,7 @@ export default {
|
|||||||
this.$u.route({
|
this.$u.route({
|
||||||
url: '/pages/login/agreements',
|
url: '/pages/login/agreements',
|
||||||
params: {
|
params: {
|
||||||
|
id: 1,
|
||||||
title: "用户协议"
|
title: "用户协议"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user