|
@@ -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
|