From 5359a747af9b56134302bba81bca89212d5d19d4 Mon Sep 17 00:00:00 2001 From: yinbangzhong <zhongbangyin@126.com> Date: 星期三, 31 七月 2024 00:49:30 +0800 Subject: [PATCH] 权限用登录 --- src/api/interceptor.ts | 24 +++++++++++++++++------- 1 files changed, 17 insertions(+), 7 deletions(-) diff --git a/src/api/interceptor.ts b/src/api/interceptor.ts index 36599d4..40b4b38 100644 --- a/src/api/interceptor.ts +++ b/src/api/interceptor.ts @@ -2,7 +2,12 @@ import type { AxiosRequestConfig, AxiosResponse } from 'axios'; import { Message, Modal } from '@arco-design/web-vue'; import { useUserStore } from '@/store'; -import { getAuthorization, getToken, setAuthorization, setToken } from "@/utils/auth"; +import { + getAuthorization, + getToken, + setAuthorization, + setToken, +} from '@/utils/auth'; export interface HttpResponse<T = unknown> { status: number; @@ -14,7 +19,7 @@ if (import.meta.env.VITE_API_BASE_URL) { axios.defaults.baseURL = import.meta.env.VITE_API_BASE_URL; } -axios.defaults.withCredentials = true +axios.defaults.withCredentials = true; axios.interceptors.request.use( (config: AxiosRequestConfig) => { // let each request carry token @@ -29,7 +34,6 @@ // config.headers.Authorization = `Bearer ${token}`; // } - const authorization = getAuthorization(); if (authorization) { if (!config.headers) { @@ -37,7 +41,7 @@ } config.headers.Authorization = `${authorization}`; } - config.headers.Authorization = 'IjFjOWY3OWM0NGUxYzExZWZhMDk0MDI0MmFjMTIwMDA2Ig.ZqhQ-w.JmA9ESUTd_JKK2wtZ4PVgVmCNj8'; + // config.headers.Authorization = 'ImI1ZjBiMTE4NGE5MDExZWZhODMxMDI0MmFjMTIwMDA2Ig.ZqJeng.mxAf4MaEIp_v6jiQqEe3B13xaNE'; return config; }, (error) => { @@ -51,7 +55,10 @@ const res = response.data; // if the custom code is not 20000, it is judged as an error. - /*if ((res.retcode && res.retcode !== 0) || (res.code && res.code !== 20000)) { + if ( + (res.retcode && res.retcode !== 0) || + (res.code && res.code !== 20000) + ) { Message.error({ content: res.msg || 'Error', duration: 5 * 1000, @@ -77,9 +84,12 @@ return Promise.reject(new Error(res.msg || 'Error')); } - if(response.config.url === '/v1/user/login'|| response.config.url === '/base/login') { + if ( + response.config.url === '/v1/user/login' || + response.config.url === '/base/login' + ) { setAuthorization(response.headers.authorization); - }*/ + } return res; }, (error) => { -- Gitblit v1.8.0