Merge branch 'hotfix/phoneVerify' into 'master'
国外手机号码不校验 See merge request !46
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -86,7 +86,7 @@ $btnNext.on('touchstart', function() { | @@ -86,7 +86,7 @@ $btnNext.on('touchstart', function() { | ||
86 | } | 86 | } |
87 | 87 | ||
88 | 88 | ||
89 | - if (api.phoneRegx[areaCode].test(pn)) { | 89 | + if (api.phoneRegx[areaCode].test(pn) || areaCode !== '+86') { |
90 | 90 | ||
91 | requested = true; | 91 | requested = true; |
92 | 92 |
-
Please register or login to post a comment