chore: fix key

This commit is contained in:
chansee97 2024-04-04 16:57:22 +08:00
parent b3269418de
commit 17145c61dd
11 changed files with 22 additions and 17 deletions

View File

@ -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://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 ## Star History

View File

@ -95,7 +95,7 @@ Nova-Admin 是完全开源免费的项目,目前仍然在优化迭代中,旨
## [贡献者](https://github.com/chansee97/nova-admin/graphs/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 历史 ## Star 历史

View File

@ -19,7 +19,7 @@ export function setupRouterGuard(router: Router) {
appStore.showProgress && window.$loadingBar?.start() appStore.showProgress && window.$loadingBar?.start()
// 判断有无TOKEN,登录鉴权 // 判断有无TOKEN,登录鉴权
const isLogin = Boolean(local.get('token')) const isLogin = Boolean(local.get('accessToken'))
if (!isLogin) { if (!isLogin) {
if (to.name === 'login') if (to.name === 'login')
next() next()

View File

@ -30,7 +30,7 @@ const { onAuthRequired, onResponseRefreshToken } = createServerTokenAuthenticati
}, },
// 添加token到请求头 // 添加token到请求头
assignToken: (method) => { assignToken: (method) => {
method.config.headers.Authorization = `Bearer ${local.get('token')}` method.config.headers.Authorization = `Bearer ${local.get('accessToken')}`
}, },
}) })

View File

@ -72,7 +72,7 @@ export async function handleRefreshToken() {
const authStore = useAuthStore() const authStore = useAuthStore()
const { data } = await fetchUpdateToken({ refreshToken: local.get('refreshToken') }) const { data } = await fetchUpdateToken({ refreshToken: local.get('refreshToken') })
if (data) { if (data) {
local.set('token', data.accessToken) local.set('accessToken', data.accessToken)
local.set('refreshToken', data.refreshToken) local.set('refreshToken', data.refreshToken)
} }
else { else {

View File

@ -2,7 +2,7 @@ import { createAlovaInstance } from './alova'
import { serviceConfig } from '@/../service.config' import { serviceConfig } from '@/../service.config'
import { generateProxyPattern } from '@/../build/proxy' 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]) const { url } = generateProxyPattern(serviceConfig[import.meta.env.MODE])

View File

@ -12,7 +12,7 @@ export const useAuthStore = defineStore('auth-store', {
state: (): AuthStatus => { state: (): AuthStatus => {
return { return {
userInfo: local.get('userInfo'), userInfo: local.get('userInfo'),
token: local.get('token') || '', token: local.get('accessToken') || '',
} }
}, },
getters: { getters: {
@ -46,7 +46,7 @@ export const useAuthStore = defineStore('auth-store', {
} }
}, },
clearAuthStorage() { clearAuthStorage() {
local.remove('token') local.remove('accessToken')
local.remove('refreshToken') local.remove('refreshToken')
local.remove('userInfo') local.remove('userInfo')
}, },
@ -67,7 +67,7 @@ export const useAuthStore = defineStore('auth-store', {
async handleAfterLogin(data: ApiAuth.loginInfo) { async handleAfterLogin(data: ApiAuth.loginInfo) {
// 将token和userInfo保存下来 // 将token和userInfo保存下来
local.set('userInfo', data) local.set('userInfo', data)
local.set('token', data.accessToken) local.set('accessToken', data.accessToken)
local.set('refreshToken', data.refreshToken) local.set('refreshToken', data.refreshToken)
this.token = data.accessToken this.token = data.accessToken
this.userInfo = data this.userInfo = data

View File

@ -14,11 +14,13 @@ declare namespace ApiAuth {
email?: string email?: string
/* 用户昵称 */ /* 用户昵称 */
nickname?: string nickname?: string
notes?: string /* 用户电话 */
tel?: string tel?: string
/** 用户角色类型 */ /** 用户角色类型 */
role: Auth.RoleType role: Auth.RoleType
/** 访问toekn */
accessToken: string accessToken: string
/** 刷新toekn */
refreshToken: string refreshToken: string
} }
} }

View File

@ -25,10 +25,13 @@ declare namespace Storage {
} }
interface Local { interface Local {
/* 存储用户信息 */
userInfo: ApiAuth.loginInfo userInfo: ApiAuth.loginInfo
token: string /* 存储访问token */
accessToken: string
/* 存储刷新token */
refreshToken: string refreshToken: string
tabsRoutes: string /* 存储登录账号 */
login_account: any loginAccount: any
} }
} }

View File

@ -39,15 +39,15 @@ function handleLogin() {
const { account, pwd } = formValue.value const { account, pwd } = formValue.value
if (isRemember.value) if (isRemember.value)
local.set('login_account', { account, pwd }) local.set('loginAccount', { account, pwd })
else local.remove('login_account') else local.remove('loginAccount')
await authStore.login(account, pwd) await authStore.login(account, pwd)
isLoading.value = false isLoading.value = false
}) })
} }
function checkUserAccount() { function checkUserAccount() {
const loginAccount = local.get('login_account') const loginAccount = local.get('loginAccount')
if (!loginAccount) if (!loginAccount)
return return

View File

@ -22,7 +22,7 @@ const appName = import.meta.env.VITE_APP_NAME
style="background: var(--card-color);box-shadow: var(--box-shadow-1);" style="background: var(--card-color);box-shadow: var(--box-shadow-1);"
> >
<div class="w-full flex flex-col items-center"> <div class="w-full flex flex-col items-center">
<SvgIcon name="logo" :size="80" /> <SvgIconsLogo class="text-6em" />
<n-h3>{{ appName }} </n-h3> <n-h3>{{ appName }} </n-h3>
<transition <transition
name="fade-slide" name="fade-slide"