Browse Source

2024.08.16 补充提交

zweiqin 7 months ago
parent
commit
d365f30cc8
1 changed files with 27 additions and 27 deletions
  1. 27 27
      src/components/GraphicVerificationCode/index.vue

+ 27 - 27
src/components/GraphicVerificationCode/index.vue

@@ -163,34 +163,34 @@ export default {
       } else {
         _api = getCode
       }
-      // _api({ phone: this.phone, x: sliderX, y: this.slideOptions.sliderY, xxx: sliderKey })
-      //   .then((res) => {
-      this.$emit('success-verify', true)
-      this.slideLoading = false
-      done()
-      if (!this.codeTimer) {
-        this.codeLoading = true
-        this.codeCount = 60
-        this.codeTimer = setInterval(() => {
-          if (this.codeCount > 1 && this.codeCount <= 60) {
-            this.codeCount--
-          } else {
-            clearInterval(this.codeTimer) // 清除定时器
-            this.codeTimer = null
-            this.codeLoading = false
+      _api({ phone: this.phone, x: sliderX, y: this.slideOptions.sliderY, xxx: sliderKey })
+        .then((res) => {
+          this.$emit('success-verify', true)
+          this.slideLoading = false
+          done()
+          if (!this.codeTimer) {
+            this.codeLoading = true
+            this.codeCount = 60
+            this.codeTimer = setInterval(() => {
+              if (this.codeCount > 1 && this.codeCount <= 60) {
+                this.codeCount--
+              } else {
+                clearInterval(this.codeTimer) // 清除定时器
+                this.codeTimer = null
+                this.codeLoading = false
+              }
+            }, 1000)
           }
-        }, 1000)
-      }
-      this.isShowGraphicVerificationDialog = false
-      this.$message({
-        message: '发送成功,请注意查看手机短信',
-        type: 'success'
-      })
-      // })
-      // .catch(() => {
-      //   this.slideLoading = false
-      //   error()
-      // })
+          this.isShowGraphicVerificationDialog = false
+          this.$message({
+            message: '发送成功,请注意查看手机短信',
+            type: 'success'
+          })
+        })
+        .catch(() => {
+          this.slideLoading = false
+          error()
+        })
     }
   }
 }