2020-12-21 11:58:15 +08:00
|
|
|
|
import axios from 'axios'
|
|
|
|
|
import { Notification, MessageBox, Message } from 'element-ui'
|
|
|
|
|
import store from '@/store'
|
|
|
|
|
import { getToken } from '@/utils/auth'
|
|
|
|
|
import errorCode from '@/utils/errorCode'
|
2021-12-04 23:27:39 +08:00
|
|
|
|
import Cookies from "js-cookie";
|
2022-04-18 21:15:01 +08:00
|
|
|
|
import {getPath, getTenantEnable} from "@/utils/ruoyi";
|
2020-12-21 11:58:15 +08:00
|
|
|
|
|
2022-02-17 19:05:06 +08:00
|
|
|
|
// 是否显示重新登录
|
2022-03-20 21:59:02 +08:00
|
|
|
|
export let isRelogin = { show: false };
|
2022-02-17 19:05:06 +08:00
|
|
|
|
|
2020-12-21 11:58:15 +08:00
|
|
|
|
axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8'
|
|
|
|
|
// 创建axios实例
|
|
|
|
|
const service = axios.create({
|
|
|
|
|
// axios中请求配置有baseURL选项,表示请求URL公共部分
|
2022-02-01 22:59:43 +08:00
|
|
|
|
baseURL: process.env.VUE_APP_BASE_API + '/admin-api/', // 此处的 /admin-api/ 地址,原因是后端的基础路径为 /admin-api/
|
2020-12-21 11:58:15 +08:00
|
|
|
|
// 超时
|
|
|
|
|
timeout: 10000
|
|
|
|
|
})
|
|
|
|
|
// request拦截器
|
|
|
|
|
service.interceptors.request.use(config => {
|
|
|
|
|
// 是否需要设置 token
|
|
|
|
|
const isToken = (config.headers || {}).isToken === false
|
|
|
|
|
if (getToken() && !isToken) {
|
|
|
|
|
config.headers['Authorization'] = 'Bearer ' + getToken() // 让每个请求携带自定义token 请根据实际情况自行修改
|
|
|
|
|
}
|
2021-12-04 23:27:39 +08:00
|
|
|
|
// 设置租户
|
2022-02-20 00:33:12 +08:00
|
|
|
|
if (getTenantEnable()) {
|
|
|
|
|
const tenantId = Cookies.get('tenantId');
|
|
|
|
|
if (tenantId) {
|
|
|
|
|
config.headers['tenant-id'] = tenantId;
|
|
|
|
|
}
|
2021-12-04 23:27:39 +08:00
|
|
|
|
}
|
2020-12-21 11:58:15 +08:00
|
|
|
|
// get请求映射params参数
|
|
|
|
|
if (config.method === 'get' && config.params) {
|
|
|
|
|
let url = config.url + '?';
|
|
|
|
|
for (const propName of Object.keys(config.params)) {
|
|
|
|
|
const value = config.params[propName];
|
|
|
|
|
var part = encodeURIComponent(propName) + "=";
|
|
|
|
|
if (value !== null && typeof(value) !== "undefined") {
|
|
|
|
|
if (typeof value === 'object') {
|
|
|
|
|
for (const key of Object.keys(value)) {
|
|
|
|
|
let params = propName + '[' + key + ']';
|
|
|
|
|
var subPart = encodeURIComponent(params) + "=";
|
|
|
|
|
url += subPart + encodeURIComponent(value[key]) + "&";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
url += part + encodeURIComponent(value) + "&";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
url = url.slice(0, -1);
|
|
|
|
|
config.params = {};
|
|
|
|
|
config.url = url;
|
|
|
|
|
}
|
|
|
|
|
return config
|
|
|
|
|
}, error => {
|
|
|
|
|
console.log(error)
|
|
|
|
|
Promise.reject(error)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 响应拦截器
|
|
|
|
|
service.interceptors.response.use(res => {
|
|
|
|
|
// 未设置状态码则默认成功状态
|
|
|
|
|
const code = res.data.code || 200;
|
|
|
|
|
// 获取错误信息
|
|
|
|
|
const msg = errorCode[code] || res.data.msg || errorCode['default']
|
|
|
|
|
if (code === 401) {
|
2022-03-20 21:59:02 +08:00
|
|
|
|
if (!isRelogin.show) {
|
|
|
|
|
isRelogin.show = true;
|
2022-02-17 19:05:06 +08:00
|
|
|
|
MessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', {
|
|
|
|
|
confirmButtonText: '重新登录',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}
|
|
|
|
|
).then(() => {
|
2022-03-20 21:59:02 +08:00
|
|
|
|
isRelogin.show = false;
|
2022-02-17 19:05:06 +08:00
|
|
|
|
store.dispatch('LogOut').then(() => {
|
2022-04-18 21:15:01 +08:00
|
|
|
|
location.href = getPath('/index');
|
2022-02-17 19:05:06 +08:00
|
|
|
|
})
|
|
|
|
|
}).catch(() => {
|
2022-03-20 21:59:02 +08:00
|
|
|
|
isRelogin.show = false;
|
2022-02-17 19:05:06 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
2022-02-17 11:34:58 +08:00
|
|
|
|
return Promise.reject('无效的会话,或者会话已过期,请重新登录。')
|
2020-12-21 11:58:15 +08:00
|
|
|
|
} else if (code === 500) {
|
|
|
|
|
Message({
|
|
|
|
|
message: msg,
|
|
|
|
|
type: 'error'
|
|
|
|
|
})
|
|
|
|
|
return Promise.reject(new Error(msg))
|
2021-04-18 01:16:47 +08:00
|
|
|
|
} else if (code === 901) {
|
|
|
|
|
Message({
|
|
|
|
|
type: 'error',
|
|
|
|
|
duration: 0,
|
|
|
|
|
dangerouslyUseHTMLString: true,
|
2022-03-10 13:48:37 +08:00
|
|
|
|
message: '<div>演示模式,无法进行写操作</div>'
|
2021-04-18 01:16:47 +08:00
|
|
|
|
+ '<div> </div>'
|
2022-03-10 13:48:37 +08:00
|
|
|
|
+ '<div>参考 https://doc.iocoder.cn/ 教程</div>'
|
2021-04-18 01:16:47 +08:00
|
|
|
|
+ '<div> </div>'
|
|
|
|
|
+ '<div>5 分钟搭建本地环境</div>',
|
|
|
|
|
})
|
|
|
|
|
return Promise.reject(new Error(msg))
|
2020-12-21 11:58:15 +08:00
|
|
|
|
} else if (code !== 200) {
|
|
|
|
|
Notification.error({
|
|
|
|
|
title: msg
|
|
|
|
|
})
|
|
|
|
|
return Promise.reject('error')
|
|
|
|
|
} else {
|
2021-01-07 21:28:23 +08:00
|
|
|
|
return res.data
|
2020-12-21 11:58:15 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
error => {
|
|
|
|
|
console.log('err' + error)
|
|
|
|
|
let { message } = error;
|
2021-01-03 03:21:35 +08:00
|
|
|
|
if (message === "Network Error") {
|
2020-12-21 11:58:15 +08:00
|
|
|
|
message = "后端接口连接异常";
|
|
|
|
|
}
|
|
|
|
|
else if (message.includes("timeout")) {
|
|
|
|
|
message = "系统接口请求超时";
|
|
|
|
|
}
|
|
|
|
|
else if (message.includes("Request failed with status code")) {
|
|
|
|
|
message = "系统接口" + message.substr(message.length - 3) + "异常";
|
|
|
|
|
}
|
|
|
|
|
Message({
|
|
|
|
|
message: message,
|
|
|
|
|
type: 'error',
|
|
|
|
|
duration: 5 * 1000
|
|
|
|
|
})
|
|
|
|
|
return Promise.reject(error)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
2022-01-03 18:46:00 +08:00
|
|
|
|
export function getBaseHeader() {
|
|
|
|
|
return {
|
|
|
|
|
'Authorization': "Bearer " + getToken(),
|
|
|
|
|
'tenant-id': Cookies.get('tenantId'),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 11:58:15 +08:00
|
|
|
|
export default service
|