|
@@ -22,7 +22,7 @@ export class Interceptors {
|
|
|
this.instance.interceptors.request.use(
|
|
|
(config: any) => {
|
|
|
if (!config.headers.Authorization) {
|
|
|
- const token = sessionStorage.getItem('ax_token');
|
|
|
+ const token = localStorage.getItem('ax_token');
|
|
|
if (token) {
|
|
|
config.headers.Authorization = token;
|
|
|
} else {
|
|
@@ -41,10 +41,10 @@ export class Interceptors {
|
|
|
// 请求成功
|
|
|
(res: any) => {
|
|
|
if (res.headers.authorization) {
|
|
|
- sessionStorage.setItem('ax_token', res.headers.authorization);
|
|
|
+ localStorage.setItem('ax_token', res.headers.authorization);
|
|
|
} else {
|
|
|
if (res.data && res.data.code === 200 && res.data.token) {
|
|
|
- sessionStorage.setItem('ax_token', res.data.token);
|
|
|
+ localStorage.setItem('ax_token', res.data.token);
|
|
|
}
|
|
|
}
|
|
|
if (res.status === 200) {
|