dev_static
杨树明 5 years ago
parent 9c7c1522e7
commit 3b336e536a

@ -199,9 +199,13 @@ class PackageIndexNEIBannerConcent extends Component {
}).then((result) => {
//验证有问题{"status":1,"message":"success"}
// console.log(result);
this.openNotification("验证码已发送,请注意查收!",2);
// this.openNotification("验证码已发送,请注意查收!",2);
if(result.data.status===1){
this.openNotification("验证码已发送,请注意查收",2);
}else{
this.openNotification(result.data.success,2);
}
}).catch((error) => {
console.log(error);

@ -166,8 +166,12 @@ class LoginRegisterComponent extends Component {
}
}).then((result) => {
//验证有问题{"status":1,"message":"success"}
this.openNotification("验证码已发送,请注意查收!",2);
// this.openNotification("验证码已发送,请注意查收!",2);
if(result.data.status===1){
this.openNotification("验证码已发送,请注意查收",2);
}else{
this.openNotification(result.data.success,2);
}
}).catch((error) => {
console.log(error);

Loading…
Cancel
Save