Explorar o código

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

leichen hai 5 meses
pai
achega
5158a99c23
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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