소스 검색

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