fix 修复手机号校验的正则表达式错误

This commit is contained in:
ymj666
2025-08-19 17:00:49 +08:00
parent 5e5fca8f6b
commit 153758df82
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -410,7 +410,7 @@ const initData: PageData<UserForm, UserQuery> = {
],
phonenumber: [
{
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
pattern: /^1[3456789][0-9]\d{8}$/,
message: '请输入正确的手机号码',
trigger: 'blur'
}