瀏覽代碼

Merge branch 'ch/dongwu1.3' of eta_mini/eta_mini_crm_front into debug_dw

leichen 5 月之前
父節點
當前提交
5158a99c23
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/api/index.js

+ 2 - 1
src/api/index.js

@@ -43,7 +43,8 @@ _axios.interceptors.response.use(
   function (response) {
     // Do something with response data
     let data
-    if(import.meta.env.MODE==='production'){
+    // 如果是是导出excel的请求,则不进行解密操作
+    if(import.meta.env.MODE==='production' && !response.config.url.endsWith('/user/potential/export/excel')){
       data=JSON.parse(CryptoJS.Des3Decrypt(response.data,import.meta.env.VITE_APP_RESPONSE_DES_KEY));//解密
     }else{
       data=response.data