Authored by 毕凯

短信发送成功后跳转

... ... @@ -40,7 +40,11 @@ function nextStep(url, mobileNo, areaCode) {
success: function(res) {
// console.log(res.data);
location.href = url;
if (res.code === 200) {
location.href = url;
} else {
tip.show(res.message);
}
},
error: function() {
tip.show('出错了,请重试!');
... ...