浏览代码

扫码页面图形验证码输入错误,弹窗消失太快 期望: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)
       }
     }
   },