|
@@ -22,7 +22,7 @@ export function checkPassWord(pwd){
|
|
|
//验证手机号的正则 仅支持国内大陆的
|
|
|
export const patternPhone = /0?(13|14|15|18|17)[0-9]{9}/
|
|
|
export function isMobileNo(account) {
|
|
|
- // 手机号正则
|
|
|
+ /* // 手机号正则
|
|
|
var isChinaMobile = new RegExp(
|
|
|
"(^1(3[4-9]|4[78]|5[0-27-9]|7[28]|8[2-478]|98)\\d{8}$)"
|
|
|
); // 中国移动
|
|
@@ -41,7 +41,10 @@ export function isMobileNo(account) {
|
|
|
return true;
|
|
|
} else if (isChinaTelcom.test(account)) {
|
|
|
return true;
|
|
|
- } else return isOtherTelphone.test(account);
|
|
|
+ } else return isOtherTelphone.test(account); */
|
|
|
+ //改成和后端一样的正则
|
|
|
+ const phonePatter = new RegExp("(^((13[0-9])|(14[5|7])|(15([0-3]|[5-9]))|(18[0-9])|(17[0-9])|(16[0-9])|(19[0-9]))\\d{8}$)")
|
|
|
+ return phonePatter.test(account)
|
|
|
}
|
|
|
//验证邮箱的正则
|
|
|
export const patternEmail = /\w[-\w.+]*@([A-Za-z0-9][-A-Za-z0-9]+\.)+[A-Za-z]{2,14}/
|