This commit is contained in:
parent
6b28458f05
commit
f48a086c6c
|
@ -21,34 +21,34 @@ axios.interceptors.request.use(
|
||||||
);
|
);
|
||||||
|
|
||||||
// HTTP response 拦截器
|
// HTTP response 拦截器
|
||||||
// axios.interceptors.response.use(
|
axios.interceptors.response.use(
|
||||||
// (response) => {
|
(response) => {
|
||||||
// return response;
|
return response;
|
||||||
// },
|
},
|
||||||
// (error) => {
|
(error) => {
|
||||||
// if (error.response) {
|
if (error.response) {
|
||||||
// if (error.response.status == 401) {
|
if (error.response.status == 401) {
|
||||||
// ElMessage.error("请重新登录!");
|
ElMessage.error("请重新登录!");
|
||||||
// // window.location.href = '/#/login?returnURL=' + window.location.href
|
// window.location.href = '/#/login?returnURL=' + window.location.href
|
||||||
// window.location.href =
|
window.location.href =
|
||||||
// 'http://220.191.238.50:996/api/login?returnURL=' +
|
'http://220.191.238.50:996/api/login?returnURL=' +
|
||||||
// window.location.href
|
window.location.href
|
||||||
// } else if (error.response.status == 404) {
|
} else if (error.response.status == 404) {
|
||||||
// ElMessage.error("Status:404,正在请求不存在的服务器记录!");
|
ElMessage.error("Status:404,正在请求不存在的服务器记录!");
|
||||||
// } else if (error.response.status == 500) {
|
} else if (error.response.status == 500) {
|
||||||
// ElMessage.error({
|
ElMessage.error({
|
||||||
// title: '请求错误',
|
title: '请求错误',
|
||||||
// message: "Status:500,服务器发生错误!"
|
message: "Status:500,服务器发生错误!"
|
||||||
// });
|
});
|
||||||
// } else {
|
} else {
|
||||||
// ElMessage.error(`Status:${error.response.status},未知错误!`);
|
ElMessage.error(`Status:${error.response.status},未知错误!`);
|
||||||
// }
|
}
|
||||||
// } else {
|
} else {
|
||||||
// ElMessage.error("请求服务器无响应!");
|
ElMessage.error("请求服务器无响应!");
|
||||||
// }
|
}
|
||||||
// return Promise.reject(error.response);
|
return Promise.reject(error.response);
|
||||||
// }
|
}
|
||||||
// );
|
);
|
||||||
|
|
||||||
var http = {
|
var http = {
|
||||||
|
|
||||||
|
|
|
@ -15,8 +15,8 @@ export default defineConfig({
|
||||||
// 第一个代理
|
// 第一个代理
|
||||||
"/api": {
|
"/api": {
|
||||||
// 匹配到啥来进行方向代理
|
// 匹配到啥来进行方向代理
|
||||||
target: "http://192.168.1.2:8095/", //本地
|
// target: "http://192.168.1.2:8095/", //本地
|
||||||
// target: "http://220.191.238.50:996/", //线上
|
target: "http://220.191.238.50:996/", //线上
|
||||||
changeOrigin: true, //是否支持跨域
|
changeOrigin: true, //是否支持跨域
|
||||||
//rewrite: (path) => path.replace(/^\/api/, '') // 如果不需要api 直接把路径上的api 替换成空,这个
|
//rewrite: (path) => path.replace(/^\/api/, '') // 如果不需要api 直接把路径上的api 替换成空,这个
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue