Handy_Cao 1 년 전
부모
커밋
7fca22532f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/packages/pc/views/footer/capital/summary/withdraw/index.vue

+ 2 - 2
src/packages/pc/views/footer/capital/summary/withdraw/index.vue

@@ -131,7 +131,7 @@ const formSubmit = () => {
         }
 
         // 请求等待可能会超过30秒导致请求超时,所以2秒内没回应直接提示成功
-        const t = setTimeout(() => complete(), 2000)
+        const time = setTimeout(() => complete(), 2000)
 
         onSubmit().then(() => {
             if (!isComplete) {
@@ -143,7 +143,7 @@ const formSubmit = () => {
                 ElMessage.error(t('common.submitfailure') + err)
             }
         }).finally(() => {
-            window.clearTimeout(t)
+            window.clearTimeout(time)
         })
     } else {
         ElMessage.error('未签约')