|
@@ -125,11 +125,6 @@
|
|
message: '请选择身份类型',
|
|
message: '请选择身份类型',
|
|
trigger: 'change'
|
|
trigger: 'change'
|
|
}],
|
|
}],
|
|
- parentCardName: [{
|
|
|
|
- required: true,
|
|
|
|
- message: '输入证件号',
|
|
|
|
- trigger: 'change'
|
|
|
|
- }],
|
|
|
|
parentCardNumber: [{
|
|
parentCardNumber: [{
|
|
required: true,
|
|
required: true,
|
|
message: '输入证件号',
|
|
message: '输入证件号',
|
|
@@ -182,7 +177,8 @@
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
- if(Date.parse(new Date())<1660190400000){
|
|
|
|
|
|
+ //审核不让收集省份证等信息
|
|
|
|
+ if(Date.parse(new Date())<1660615200000){
|
|
this.showinput=false
|
|
this.showinput=false
|
|
}
|
|
}
|
|
// this.subscribelForm.phone = uni.getStorageSync('userData').phone
|
|
// this.subscribelForm.phone = uni.getStorageSync('userData').phone
|
|
@@ -196,10 +192,17 @@
|
|
data['studentCardName'] = info.idCard.split(',')[0]
|
|
data['studentCardName'] = info.idCard.split(',')[0]
|
|
data['studentCardNumber'] = info.idCard.split(',')[1]
|
|
data['studentCardNumber'] = info.idCard.split(',')[1]
|
|
}
|
|
}
|
|
|
|
+ console.log(info.parentIdCard)
|
|
if(info.parentIdCard) {
|
|
if(info.parentIdCard) {
|
|
data['parentCardName'] = info.parentIdCard.split(',')[0]
|
|
data['parentCardName'] = info.parentIdCard.split(',')[0]
|
|
data['parentCardNumber'] = info.parentIdCard.split(',')[1]
|
|
data['parentCardNumber'] = info.parentIdCard.split(',')[1]
|
|
}
|
|
}
|
|
|
|
+ if(info.parentIdCard==null){
|
|
|
|
+ info.parentIdCard=''
|
|
|
|
+ }
|
|
|
|
+ if(info.idCard==null){
|
|
|
|
+ info.idCard=''
|
|
|
|
+ }
|
|
this.subscribelForm = { ...info, ...data}
|
|
this.subscribelForm = { ...info, ...data}
|
|
} else {
|
|
} else {
|
|
uni.setNavigationBarTitle({
|
|
uni.setNavigationBarTitle({
|