소스 검색

Merge branch 'v2.0' into debug

yujinwen 3 달 전
부모
커밋
5d49a5f35d
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. 10 1
      src/views/Login.vue

+ 10 - 1
src/views/Login.vue

@@ -89,7 +89,16 @@ async function handleMobileVerifyCode(){
     Mobile:formData.tel,
     TelAreaCode:formData.telCode
   })
-  if(res.Ret!==200) return
+  if(![200,4013].includes(res.Ret)) return
+  if(res.Ret===4013){
+    await $confirmDialog({
+      header:'提示',
+      body: res.Msg,
+      confirmBtn:'知道了',
+      cancelBtn:null,
+    });
+    return
+  }
   isSendCode.value=true
   countDownTime.value=60
   countDownTimer=setInterval(()=>{