提交 8b36f47f authored 作者: lihuihui's avatar lihuihui

update

上级 7b41c44c
...@@ -186,8 +186,12 @@ export default { ...@@ -186,8 +186,12 @@ export default {
}) })
action.Login.getSendCode({ mobile: this.form.register.mobile }).then((res) => { action.Login.getSendCode({ mobile: this.form.register.mobile }).then((res) => {
Toast.clear() Toast.clear()
res.code === 0 && (this.tickCode()) if (res.code === 0) {
this.tickCode()
Toast('发送验证码成功!') Toast('发送验证码成功!')
return
}
Toast(res.msg)
}) })
} }
}, },
...@@ -204,8 +208,12 @@ export default { ...@@ -204,8 +208,12 @@ export default {
}) })
action.Login.getSendCode({ mobile: this.form.accountLogin2.mobile }).then((res) => { action.Login.getSendCode({ mobile: this.form.accountLogin2.mobile }).then((res) => {
Toast.clear() Toast.clear()
res.code === 0 && (this.tickCode()) if (res.code === 0) {
this.tickCode()
Toast('发送验证码成功!') Toast('发送验证码成功!')
return
}
Toast(res.msg)
}) })
} }
}, },
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论