|
@@ -14,7 +14,7 @@ let LOADING;
|
|
|
console.log(import.meta.env.VITE_APP_HZYB_BASEAPIURL);
|
|
|
let config = {
|
|
|
baseURL: import.meta.env.VITE_APP_HZYB_BASEAPIURL,
|
|
|
- timeout: 60 * 1000, // Timeout
|
|
|
+ timeout: 10*60 * 1000, // Timeout
|
|
|
// withCredentials: true, // Check cross-site Access-Control
|
|
|
};
|
|
|
|
|
@@ -55,7 +55,7 @@ _axios.interceptors.response.use(
|
|
|
|
|
|
let data
|
|
|
if(import.meta.env.MODE==='product'){
|
|
|
- const data=JSON.parse(CryptoJS.Des3Decrypt(response.data));//解密
|
|
|
+ data=JSON.parse(CryptoJS.Des3Decrypt(response.data));//解密
|
|
|
}else{
|
|
|
data=response.data
|
|
|
}
|