|
@@ -201,7 +201,7 @@
|
|
|
return
|
|
|
}
|
|
|
var phone = $.trim($("#tel").val());
|
|
|
- if(!Verification.isPhone(phone)){
|
|
|
+ if((!Verification.isPhone(phone))||(!CreatePhone.isPhone(phone))){
|
|
|
EasyAlert.show("手机号格式错误");
|
|
|
return
|
|
|
}
|
|
@@ -374,7 +374,7 @@
|
|
|
dcsOne = false;
|
|
|
$("#sendIdentCode").css("color","#888888")
|
|
|
}
|
|
|
- if($.trim(phone).length > 0 && Verification.isPhone(phone)){
|
|
|
+ if($.trim(phone).length > 0 && (Verification.isPhone(phone) || CreatePhone.isPhone(phone))){
|
|
|
if($(".header-tab>a.header-tab-active").index() == 0){
|
|
|
if($.trim(password).length > 0 && password.length >= 6){
|
|
|
$("#btn").removeClass("disabled");
|