Commit 5c8a13d5 authored by zhangyanni's avatar zhangyanni

严格验证手机号

parent 7e5c94de
......@@ -13,7 +13,8 @@ export default {
i18n,
//验证手机号码
checkMobile(rule, value, callback) {
var reg = /^1[3456789]\d{9}$/;
// var reg = /^1[3456789]\d{9}$/;
var reg = /^(((13[0-9])|(14[5-9])|(15([0-3]|[5-9]))|(16[6])|(17([3]|[5-8]))|(18[0-9])|(19([1]|[8,9])))\\d{8})$/;
if (value === '') {
callback(new Error(i18n.t("errorValidate.errorNoMobile")));
} else if (!reg.test(value)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment