提交 b2d2f4aac29432e1bb1934b3672223fa4167af1f

作者 pangy
1 个父辈 cb30ed8a

自然人信息 地址必填规律

@@ -887,6 +887,19 @@ Page({ @@ -887,6 +887,19 @@ Page({
887 this.showtoast('手机号码有误'); 887 this.showtoast('手机号码有误');
888 return 888 return
889 } 889 }
  890 + if (this.data.curAddress_haschanged || this.data.taxInfo.current_address.province_code) {//选择了地址
  891 + if (formdata.current_address_detail.length < 1) {
  892 + this.showtoast('请填写详细居住地址');
  893 + return
  894 + }
  895 + }
  896 + if (this.data.birthAddress_haschanged || this.data.taxInfo.huji_address.province_code) {//选择了地址
  897 + if (formdata.huji_address_detail.length < 1) {
  898 + this.showtoast('请填写详细户籍地址');
  899 + return
  900 + }
  901 + }
  902 +
890 // if (formdata.email && formdata.email.length > 0 && !regEmail.test(formdata.email)) { 903 // if (formdata.email && formdata.email.length > 0 && !regEmail.test(formdata.email)) {
891 // this.showtoast('邮箱格式有误'); 904 // this.showtoast('邮箱格式有误');
892 // return 905 // return
注册登录 后发表评论