master
lion 4 years ago
parent 8e0cb1aef7
commit 299c1d46fb

@ -72,7 +72,7 @@
//that.loadList(1, 4) //that.loadList(1, 4)
}, },
onShareAppMessage() { onShareAppMessage() {
return this.util.shareInfo
}, },
methods: { methods: {
showwhat(type) { showwhat(type) {

@ -178,7 +178,7 @@
} }
}, },
onShareAppMessage() { onShareAppMessage() {
return this.util.shareInfo
}, },
onLoad() { onLoad() {
this.loadInfo(); this.loadInfo();

@ -17,7 +17,7 @@
this.openlocation(); this.openlocation();
}, },
onShareAppMessage() { onShareAppMessage() {
return this.util.shareInfo
}, },
methods: { methods: {
markertap() { markertap() {

@ -19,7 +19,7 @@
} }
}, },
onShareAppMessage() { onShareAppMessage() {
return this.util.shareInfo
}, },
methods: { methods: {
goBack(){ goBack(){

@ -403,11 +403,11 @@
label: '身份证' label: '身份证'
}, },
{ {
value: 2, value: 3,
label: '港澳台居民居住证' label: '港澳台居民居住证'
}, },
{ {
value: 3, value: 2,
label: '护照' label: '护照'
}, },
{ {
@ -587,13 +587,13 @@
}, },
submitOrder() { submitOrder() {
console.log(this.form); console.log(this.form);
this.form.date = this.currentDate.date; this.form.date = this.currentDate.date;
this.form.rule_id = this.currentTime.id; this.form.rule_id = this.currentTime.id;
if(this.specialid){ // if(this.specialid){
// // //
this.form.is_disability = this.specialid; // this.form.is_disability = this.specialid;
} // }
if (this.form.details_list.length != this.form.total) { if (this.form.details_list.length != this.form.total) {
uni.showToast({ uni.showToast({
@ -728,7 +728,8 @@
name: m.name, name: m.name,
idcard: m.idcard, idcard: m.idcard,
mobile: m.mobile, mobile: m.mobile,
card_type: 1 card_type: 1,
is_disability:0
}) })
} }
uni.hideLoading(); uni.hideLoading();

Binary file not shown.

Before

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

@ -355,7 +355,12 @@ const isValidCardID = cardID => {
var last = parity[sum % 11]; var last = parity[sum % 11];
return parity[sum % 11] == code[17]; return parity[sum % 11] == code[17];
}; };
const shareInfo = {
title:"苏州的红色摇篮",
imageUrl:"/static/share.jpg"
}
/** /**
* UTF16和UTF8转换对照表 * UTF16和UTF8转换对照表
* U+00000000 U+0000007F 0xxxxxxx * U+00000000 U+0000007F 0xxxxxxx
@ -554,6 +559,7 @@ module.exports = {
getUserProfile: getUserProfile, getUserProfile: getUserProfile,
getUserInfo: getUserInfo, getUserInfo: getUserInfo,
toast: toast, toast: toast,
isValidCardID:isValidCardID isValidCardID:isValidCardID,
shareInfo:shareInfo
}; };

Loading…
Cancel
Save