解决166 手机号无法保修的bug

This commit is contained in:
wuxw 2025-11-19 17:40:47 +08:00
parent e45a3da8ab
commit 7454b77b87

View File

@ -71,7 +71,7 @@ const escape2Html = function(str) {
}
const checkPhoneNumber = function(_value){
let grep = /^(1(([35789][0-9])|(47)))\d{8}$/;
let grep = /^(1(([356789][0-9])|(47)))\d{8}$/;
if(grep.test(_value)){
return true;
}