提交 827589e61884506530e2c3b89e139af341910fd0

作者 pangy
1 个父辈 4a51130e

提交接口前。身份证判断

... ... @@ -962,6 +962,10 @@ Page({
962 962 this.showToast('请填写子女证照号码')
963 963 return
964 964 }
  965 + if (!format.isIDCardNum(formdata.children_id_card_no)) {
  966 + this.showToast('身份证格式有误')
  967 + return
  968 + }
965 969 if (!formdata.children_name || formdata.children_name.length < 1) {
966 970 this.showToast('请填写子女姓名')
967 971 return
... ... @@ -1002,7 +1006,10 @@ Page({
1002 1006 } else if (!formdata.spouse_id_card_no || formdata.spouse_id_card_no.length < 1) {
1003 1007 this.showToast('请填写配偶证照号码')
1004 1008 return
1005   - } else if (this.data.loverbirthDate.selected.length < 1) {
  1009 + } else if (!format.isIDCardNum(formdata.spouse_id_card_no)) {
  1010 + this.showToast('配偶身份证格式有误')
  1011 + return
  1012 + }else if (this.data.loverbirthDate.selected.length < 1) {
1006 1013 this.showToast('请选择配偶出生日期')
1007 1014 return
1008 1015 }
... ... @@ -1092,6 +1099,9 @@ Page({
1092 1099 } else if (!formdata.id_card_no || formdata.id_card_no.length < 1) {
1093 1100 this.showToast('请填写赡养人证照号')
1094 1101 return
  1102 + } else if (!format.isIDCardNum(formdata.id_card_no)) {
  1103 + this.showToast('赡养人身份证格式有误')
  1104 + return
1095 1105 }
1096 1106 if (this.data.olderbirthDate.selected.length < 1) {
1097 1107 this.showToast('请选择赡养人出生日期')
... ... @@ -1124,6 +1134,9 @@ Page({
1124 1134 } else if (!formdata.id_card_no || formdata.id_card_no.length < 1) {
1125 1135 this.showToast('请填写证照号码')
1126 1136 return
  1137 + } else if (!format.isIDCardNum(formdata.id_card_no)) {
  1138 + this.showToast('身份证格式有误')
  1139 + return
1127 1140 } else if (this.data.commonbirthDate.selected.length < 1) {
1128 1141 this.showToast('请选择病人出生日期')
1129 1142 return
... ... @@ -1221,6 +1234,9 @@ Page({
1221 1234 } else if (!formdata.owner_id_card_no || formdata.owner_id_card_no.length < 1) {
1222 1235 this.showToast('请填写证照号码')
1223 1236 return
  1237 + } else if (!format.isIDCardNum(formdata.owner_id_card_no)) {
  1238 + this.showToast('身份证格式有误')
  1239 + return
1224 1240 } else if (this.data.rentLocateInfo.address_value[0].length < 1) {
1225 1241 this.showToast('请选择房屋地址')
1226 1242 return
... ... @@ -1256,6 +1272,9 @@ Page({
1256 1272 } else if (!formdata.spouse_id_card_no || formdata.spouse_id_card_no.length < 1) {
1257 1273 this.showToast('请填写配偶证照号码')
1258 1274 return
  1275 + } else if (!format.isIDCardNum(formdata.spouse_id_card_no)) {
  1276 + this.showToast('配偶身份证格式有误')
  1277 + return
1259 1278 } else if (this.data.loverbirthDate.selected.length < 1) {
1260 1279 this.showToast('请选择配偶出生日期')
1261 1280 return
... ...
... ... @@ -110,7 +110,7 @@ Page({
110 110 //对各参数初始赋值
111 111 handleDatas: function (tax_info) {
112 112
113   - var isDisable = tax_info.certification_status != 'active'//已通过拍摄身份证认证过,不能修改
  113 + var isDisable = tax_info.certification_status == 'active'//已通过拍摄身份证认证过,不能修改
114 114
115 115 this.data.relativeData.selected = tax_info.family_ties
116 116 // this.data.cardtypeData.selected = tax_info.id_card_type
... ...
注册登录 后发表评论