fix 修复 无法获取token问题 将 globalHeaders 改为函数

This commit is contained in:
疯狂的狮子Li
2023-08-09 12:59:18 +08:00
parent 53ac5fb43c
commit 50891e99ac
6 changed files with 11 additions and 9 deletions

View File

@ -14,9 +14,11 @@ import { encrypt } from '@/utils/jsencrypt';
let downloadLoadingInstance: LoadingInstance;
// 是否显示重新登录
export const isRelogin = { show: false };
export const globalHeaders = {
Authorization: "Bearer " + getToken(),
clientid: import.meta.env.VITE_APP_CLIENT_ID
export const globalHeaders = () => {
return {
Authorization: "Bearer " + getToken(),
clientid: import.meta.env.VITE_APP_CLIENT_ID
}
}
axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8';