Browse Source

修复手机号码验证正则bug

daxiongYang 7 years ago
parent
commit
96d7f7271b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/utils/validate.js

+ 1 - 1
src/utils/validate.js

11
 * @param {*} s
11
 * @param {*} s
12
 */
12
 */
13
export function isMobile (s) {
13
export function isMobile (s) {
14
  return /^((\+?86)|(\(\+86\)))?(13[012356789][0-9]{8}|15[012356789][0-9]{8}|18[02356789][0-9]{8}|147[0-9]{8}|1349[0-9]{7})$/.test(s)
14
  return /^1[0-9]{10}$/.test(s)
15
}
15
}
16
16
17
/**
17
/**