[Fix-14603] phone Number validate (#14604)
This commit is contained in:
parent
3d033da55d
commit
cbfb1cbffb
|
|
@ -101,8 +101,10 @@ export function useUserDetail() {
|
|||
},
|
||||
phone: {
|
||||
trigger: ['input', 'blur'],
|
||||
required: false,
|
||||
validator(validator: any, value: string) {
|
||||
if (value && !/^1(3|4|5|6|7|8)\d{9}$/.test(value)) {
|
||||
const regExp = new RegExp('^[1][3,4,5,6,7,8,9][0-9]{9}$')
|
||||
if (value && !regExp.test(value)) {
|
||||
return new Error(t('security.user.phone_correct_tips'))
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue