提交 7130eadff871d8eb9b8a419500383ad15d1cffde

作者 guomingshu
1 个父辈 267e48f4

feat: 获取验证码增加参数

... ... @@ -249,13 +249,17 @@ export default {
249 249 setTimeout(() => {
250 250 uni.hideLoading();
251 251 // 通知验证码组件内部开始倒计时
252   - this.$refs.uCode.start();
253 252
254   - console.log(mobile);
255   -
256   - getSmsCodeApi({
257   - phone: mobile,
258   - });
  253 + getSmsCodeApi({ phone: mobile, type: 'teacher_login' }).then(res => {
  254 + console.warn(res)
  255 + this.$refs.uCode.start();
  256 + }).catch(errors => {
  257 + uni.showToast({
  258 + title: errors.data.msg,
  259 + icon: "none",
  260 + duration: 2500,
  261 + })
  262 + })
259 263 }, 1000);
260 264 } else {
261 265 this.$u.toast("倒计时结束后再发送");
... ...
注册登录 后发表评论