|
@@ -12,7 +12,7 @@ import { triggerEvent } from "@/utils/events";
|
|
|
axios.defaults.headers.post["Content-Type"] = "application/json;charset=utf-8";
|
|
|
|
|
|
let config = {
|
|
|
- baseURL: process.env.BASE_URL || process.env.apiUrl || "",
|
|
|
+ baseURL: process.env.VUE_APP_BASE_API || process.env.apiUrl || "",
|
|
|
// baseURL: "http://8.141.68.219:8080",
|
|
|
timeout: 60 * 1000,
|
|
|
withCredentials: false,
|
|
@@ -75,23 +75,23 @@ _axios.interceptors.request.use(
|
|
|
_axios.interceptors.response.use(
|
|
|
response => {
|
|
|
// 用来判断是否请求成功
|
|
|
- const success = response.status === 200 && response.data.code === 0;
|
|
|
+ const success = response.status === 200;
|
|
|
let messages = "";
|
|
|
if (!success) {
|
|
|
if (typeof response.data === "string") {
|
|
|
messages = "服务器错误,未获取到响应数据";
|
|
|
} else {
|
|
|
- if (response.status === 200 && response.data.code === 0) {
|
|
|
+ if (response.status === 200) {
|
|
|
return Promise.reject(response);
|
|
|
}
|
|
|
// 请求成功,但在业务上为失败
|
|
|
- messages = response.data.message || response.data.errorData || "操作执行失败";
|
|
|
+ messages = response.message || response.statusText || "操作执行失败";
|
|
|
}
|
|
|
message.error(messages);
|
|
|
return Promise.reject(response);
|
|
|
}
|
|
|
return {
|
|
|
- data: response.data.data,
|
|
|
+ data: response.data,
|
|
|
success,
|
|
|
messages
|
|
|
};
|