提交 48007ae6fa3e8e0456276984349780eeb1f6d445

作者 pangy
1 个父辈 ca2b5d3a

。。。

@@ -252,13 +252,7 @@ Page({ @@ -252,13 +252,7 @@ Page({
252 var formdata = e.detail.value; 252 var formdata = e.detail.value;
253 console.log("formdata", formdata); 253 console.log("formdata", formdata);
254 console.log('idnum', this.data.card_number.length < 1 && !format.isIDCardNum(formdata.id_card_no)) 254 console.log('idnum', this.data.card_number.length < 1 && !format.isIDCardNum(formdata.id_card_no))
255 - if (formdata.name.length < 1) {  
256 - this.showtoast('姓名未填写');  
257 - return  
258 - } else if (!regname.test(formdata.name)) {  
259 - this.showtoast('请输入正确姓名');  
260 - return  
261 - } else if (this.data.relativeData.selected.length < 1) { 255 + if (this.data.relativeData.selected.length < 1) {
262 this.showtoast('请选择关系'); 256 this.showtoast('请选择关系');
263 return 257 return
264 } 258 }
@@ -272,8 +266,11 @@ Page({ @@ -272,8 +266,11 @@ Page({
272 this.showtoast('请填写证照号码'); 266 this.showtoast('请填写证照号码');
273 return 267 return
274 } 268 }
275 - else if (formdata.email && formdata.email.length > 0 && !regEmail.test(formdata.email)) {  
276 - this.showtoast('请输入正确邮箱'); 269 + if (formdata.name.length < 1) {
  270 + this.showtoast('姓名未填写');
  271 + return
  272 + } else if (!regname.test(formdata.name)) {
  273 + this.showtoast('请输入正确姓名');
277 return 274 return
278 } 275 }
279 var new_card_num = '' 276 var new_card_num = ''
注册登录 后发表评论