From 79b9c73e0717c244391ab1e15c6f6da9975f2610 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 12 十一月 2024 15:58:30 +0800
Subject: [PATCH] 打包bug

---
 src/utils/request.ts |   32 ++++++++------------------------
 1 files changed, 8 insertions(+), 24 deletions(-)

diff --git a/src/utils/request.ts b/src/utils/request.ts
index ebd7d89..79b82f4 100644
--- a/src/utils/request.ts
+++ b/src/utils/request.ts
@@ -47,13 +47,14 @@
     }
     // get璇锋眰鏄犲皠params鍙傛暟
     if (config.method === 'get' && config.params) {
+      console.log(config.params, '璇锋眰鍙傛暟');
       let url = config.url + '?' + tansParams(config.params);
       url = url.slice(0, -1);
       config.params = {};
       config.url = url;
     }
 
-    if (!isRepeatSubmit && (config.method === 'post' || config.method === 'put')) {
+    if (!isRepeatSubmit && (config.method === 'post' || config.method === 'put' || config.method === 'get')) {
       const requestObj = {
         url: config.url,
         data: typeof config.data === 'object' ? JSON.stringify(config.data) : config.data,
@@ -66,7 +67,7 @@
         const s_url = sessionObj.url; // 璇锋眰鍦板潃
         const s_data = sessionObj.data; // 璇锋眰鏁版嵁
         const s_time = sessionObj.time; // 璇锋眰鏃堕棿
-        const interval = 500; // 闂撮殧鏃堕棿(ms)锛屽皬浜庢鏃堕棿瑙嗕负閲嶅鎻愪氦
+        const interval = 5; // 闂撮殧鏃堕棿(ms)锛屽皬浜庢鏃堕棿瑙嗕负閲嶅鎻愪氦
         if (s_data === requestObj.data && requestObj.time - s_time < interval && s_url === requestObj.url) {
           const message = '鏁版嵁姝e湪澶勭悊锛岃鍕块噸澶嶆彁浜�';
           console.warn(`[${s_url}]: ` + message);
@@ -77,7 +78,8 @@
       }
     }
     // 褰撳紑鍚弬鏁板姞瀵�
-    if (isEncrypt && (config.method === 'post' || config.method === 'put')) {
+    if (isEncrypt && (config.method === 'post' || config.method === 'put' || config.method === 'get')) {
+      console.log('寮�鍚簡鍙傛暟鍔犲瘑');
       // 鐢熸垚涓�涓� AES 瀵嗛挜
       const aesKey = generateAesKey();
       config.headers['encrypt-key'] = encrypt(encryptBase64(aesKey));
@@ -90,7 +92,7 @@
     return config;
   },
   (error: any) => {
-    console.log(error);
+    console.log(error, 'wcs');
     return Promise.reject(error);
   }
 );
@@ -114,32 +116,14 @@
 
       console.log(code, 'code==============');
       await router.push({ path: '/login' });
-      // prettier-ignore
-      // if (!isRelogin.show) {
-      //   // isRelogin.show = true;
-      //   isRelogin.show = true;
-      //   ElMessageBox.confirm('鐧诲綍鐘舵�佸凡杩囨湡锛屾偍鍙互缁х画鐣欏湪璇ラ〉闈紝鎴栬�呴噸鏂扮櫥褰�', '绯荤粺鎻愮ず', {
-      //     confirmButtonText: '閲嶆柊鐧诲綍',
-      //     cancelButtonText: '鍙栨秷',
-      //     type: 'warning'
-      //   }).then(() => {
-      //     isRelogin.show = false;
-      //     useUserStore().logout().then(() => {
-      //         location.href = import.meta.env.VITE_APP_CONTEXT_PATH + 'index';
-      //       });
-      //   }).catch(() => {
-      //     isRelogin.show = false;
-      //   });
-      // }
-      // return Promise.reject('鏃犳晥鐨勪細璇濓紝鎴栬�呬細璇濆凡杩囨湡锛岃閲嶆柊鐧诲綍銆�');
       return
     } else if (code === HttpStatus.SERVER_ERROR) {
       console.log(msg);
       ElMessage({ message: msg, type: 'error' });
-      return Promise.reject(new Error(msg));
+      return Promise.reject(new Error('绯荤粺鍐呴儴閿欒'));
     } else if (code === HttpStatus.WARN) {
       ElMessage({ message: msg, type: 'warning' });
-      return Promise.reject(new Error(msg));
+      return Promise.reject(new Error('绯荤粺璀﹀憡娑堟伅'));
     } else if (code !== HttpStatus.SUCCESS) {
       ElNotification.error({ title: msg });
       return Promise.reject('error');

--
Gitblit v1.8.0