This commit is contained in:
lnn19986213 2024-05-20 11:06:31 +08:00
parent 3d496c7c0e
commit 2c4f135bbf
2 changed files with 1 additions and 1 deletions

BIN
dist.zip

Binary file not shown.

View File

@ -11,7 +11,7 @@ axios.interceptors.request.use(
(config) => {
let token = tools.data.get('token');
if (token) {
config.headers['X-USER-TOKEN'] = token.token
config.headers['x-token'] = token
}
return config;
},