Authored by 毕凯

Merge branch 'hotfix/phoneVerify' into 'master'

国外手机号码不校验



See merge request !46
@@ -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