瀏覽代碼

扫码页面图形验证码输入错误,弹窗消失太快 期望:2s消失

liushengqiang 1 年之前
父節點
當前提交
921d5d173d
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/components/m-img-code/index.tsx

+ 3 - 1
src/components/m-img-code/index.tsx

@@ -89,7 +89,9 @@ export default defineComponent({
         this.$emit('sendCode');
       } catch {
         this.code = '';
-        this.updateIdentifyingCode();
+        setTimeout(() => {
+          this.updateIdentifyingCode();
+        }, 500)
       }
     }
   },