Showing
1 changed file
with
0 additions
and
1 deletions
| ... | @@ -55,7 +55,6 @@ const blurKeyboard = () => { | ... | @@ -55,7 +55,6 @@ const blurKeyboard = () => { |
| 55 | // 校验函数返回 true 表示校验通过,false 表示不通过 | 55 | // 校验函数返回 true 表示校验通过,false 表示不通过 |
| 56 | // 身份证号码为15位或者18位,15位时全为数字,18位前17位为数字,最后一位是校验位,可能为数字或字符X | 56 | // 身份证号码为15位或者18位,15位时全为数字,18位前17位为数字,最后一位是校验位,可能为数字或字符X |
| 57 | const validator = (val) => { | 57 | const validator = (val) => { |
| 58 | - console.warn(props.item.component_props.required); | ||
| 59 | if (!props.item.component_props.required) { | 58 | if (!props.item.component_props.required) { |
| 60 | // 非必填 | 59 | // 非必填 |
| 61 | return true; | 60 | return true; | ... | ... |
-
Please register or login to post a comment