[Fix-14603] phone Number validate (#14604)

(cherry picked from commit cbfb1cbffb)
This commit is contained in:
pppppjcc 2023-07-20 20:39:54 +08:00 committed by Jay Chung
parent 9c1dcd3d21
commit e84f3024b0
1 changed files with 3 additions and 1 deletions

View File

@ -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'))
}
}