diff --git a/README.md b/README.md index 35663ae..0007c0a 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ If you feel that this project is helpful for your work or study, please help me ## [Contributors](https://github.com/chansee97/nova-admin/graphs/contributors) -![Contributors](https://contrib.rocks/image?repo=chansee97/nova-admin) +[![Contributors](https://contrib.rocks/image?repo=chansee97/nova-admin)](https://contrib.rocks/preview?repo=chansee97/nova-admin) ## Star History diff --git a/README.zh-CN.md b/README.zh-CN.md index a230474..3b876ac 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -95,7 +95,7 @@ Nova-Admin 是完全开源免费的项目,目前仍然在优化迭代中,旨 ## [贡献者](https://github.com/chansee97/nova-admin/graphs/contributors) -![Contributors](https://contrib.rocks/image?repo=chansee97/nova-admin) +[![Contributors](https://contrib.rocks/image?repo=chansee97/nova-admin)](https://contrib.rocks/preview?repo=chansee97/nova-admin) ## Star 历史 diff --git a/src/router/guard.ts b/src/router/guard.ts index cc2d7dd..9314fca 100644 --- a/src/router/guard.ts +++ b/src/router/guard.ts @@ -19,7 +19,7 @@ export function setupRouterGuard(router: Router) { appStore.showProgress && window.$loadingBar?.start() // 判断有无TOKEN,登录鉴权 - const isLogin = Boolean(local.get('token')) + const isLogin = Boolean(local.get('accessToken')) if (!isLogin) { if (to.name === 'login') next() diff --git a/src/service/http/alova.ts b/src/service/http/alova.ts index ff5b1fc..c09d0db 100644 --- a/src/service/http/alova.ts +++ b/src/service/http/alova.ts @@ -30,7 +30,7 @@ const { onAuthRequired, onResponseRefreshToken } = createServerTokenAuthenticati }, // 添加token到请求头 assignToken: (method) => { - method.config.headers.Authorization = `Bearer ${local.get('token')}` + method.config.headers.Authorization = `Bearer ${local.get('accessToken')}` }, }) diff --git a/src/service/http/handle.ts b/src/service/http/handle.ts index 65532f9..0e3df22 100644 --- a/src/service/http/handle.ts +++ b/src/service/http/handle.ts @@ -72,7 +72,7 @@ export async function handleRefreshToken() { const authStore = useAuthStore() const { data } = await fetchUpdateToken({ refreshToken: local.get('refreshToken') }) if (data) { - local.set('token', data.accessToken) + local.set('accessToken', data.accessToken) local.set('refreshToken', data.refreshToken) } else { diff --git a/src/service/http/index.ts b/src/service/http/index.ts index 91192d0..f1ba12c 100644 --- a/src/service/http/index.ts +++ b/src/service/http/index.ts @@ -2,7 +2,7 @@ import { createAlovaInstance } from './alova' import { serviceConfig } from '@/../service.config' import { generateProxyPattern } from '@/../build/proxy' -const isHttpProxy = import.meta.env.VITE_HTTP_PROXY === 'Y' || false +const isHttpProxy = import.meta.env.DEV && import.meta.env.VITE_HTTP_PROXY === 'Y' const { url } = generateProxyPattern(serviceConfig[import.meta.env.MODE]) diff --git a/src/store/auth.ts b/src/store/auth.ts index 764ef55..ff66f27 100644 --- a/src/store/auth.ts +++ b/src/store/auth.ts @@ -12,7 +12,7 @@ export const useAuthStore = defineStore('auth-store', { state: (): AuthStatus => { return { userInfo: local.get('userInfo'), - token: local.get('token') || '', + token: local.get('accessToken') || '', } }, getters: { @@ -46,7 +46,7 @@ export const useAuthStore = defineStore('auth-store', { } }, clearAuthStorage() { - local.remove('token') + local.remove('accessToken') local.remove('refreshToken') local.remove('userInfo') }, @@ -67,7 +67,7 @@ export const useAuthStore = defineStore('auth-store', { async handleAfterLogin(data: ApiAuth.loginInfo) { // 将token和userInfo保存下来 local.set('userInfo', data) - local.set('token', data.accessToken) + local.set('accessToken', data.accessToken) local.set('refreshToken', data.refreshToken) this.token = data.accessToken this.userInfo = data diff --git a/src/typings/api.d.ts b/src/typings/api.d.ts index cfd98d6..337f3ca 100644 --- a/src/typings/api.d.ts +++ b/src/typings/api.d.ts @@ -14,11 +14,13 @@ declare namespace ApiAuth { email?: string /* 用户昵称 */ nickname?: string - notes?: string + /* 用户电话 */ tel?: string /** 用户角色类型 */ role: Auth.RoleType + /** 访问toekn */ accessToken: string + /** 刷新toekn */ refreshToken: string } } diff --git a/src/typings/global.d.ts b/src/typings/global.d.ts index e235773..af687ad 100644 --- a/src/typings/global.d.ts +++ b/src/typings/global.d.ts @@ -25,10 +25,13 @@ declare namespace Storage { } interface Local { + /* 存储用户信息 */ userInfo: ApiAuth.loginInfo - token: string + /* 存储访问token */ + accessToken: string + /* 存储刷新token */ refreshToken: string - tabsRoutes: string - login_account: any + /* 存储登录账号 */ + loginAccount: any } } diff --git a/src/views/login/components/Login/index.vue b/src/views/login/components/Login/index.vue index 7fbd3b0..53cc8a9 100644 --- a/src/views/login/components/Login/index.vue +++ b/src/views/login/components/Login/index.vue @@ -39,15 +39,15 @@ function handleLogin() { const { account, pwd } = formValue.value if (isRemember.value) - local.set('login_account', { account, pwd }) - else local.remove('login_account') + local.set('loginAccount', { account, pwd }) + else local.remove('loginAccount') await authStore.login(account, pwd) isLoading.value = false }) } function checkUserAccount() { - const loginAccount = local.get('login_account') + const loginAccount = local.get('loginAccount') if (!loginAccount) return diff --git a/src/views/login/index.vue b/src/views/login/index.vue index ec4640b..7312d98 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -22,7 +22,7 @@ const appName = import.meta.env.VITE_APP_NAME style="background: var(--card-color);box-shadow: var(--box-shadow-1);" >
- + {{ appName }}