浏览代码

fix: 修复港澳台身份证格式校验

carver 2 年之前
父节点
当前提交
5fc10d8909
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      antbuilder/industry/hospitalV2/components/edit-patient/index.js

+ 1 - 1
antbuilder/industry/hospitalV2/components/edit-patient/index.js

@@ -275,7 +275,7 @@ Component(
 					return this.showTip("将页面上的信息填写完整!");
 				}
 
-				if (!checkIdCard(idCardNo)) {
+				if (idCardType === "中国大陆居民身份证" && !checkIdCard(idCardNo)) {
 					return this.showTip("身份证格式不正确!");
 				}