mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 12:44:27 +08:00
chore: fix key
This commit is contained in:
parent
b3269418de
commit
17145c61dd
@ -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)
|
||||
|
||||

|
||||
[](https://contrib.rocks/preview?repo=chansee97/nova-admin)
|
||||
|
||||
## Star History
|
||||
|
||||
|
@ -95,7 +95,7 @@ Nova-Admin 是完全开源免费的项目,目前仍然在优化迭代中,旨
|
||||
|
||||
## [贡献者](https://github.com/chansee97/nova-admin/graphs/contributors)
|
||||
|
||||

|
||||
[](https://contrib.rocks/preview?repo=chansee97/nova-admin)
|
||||
|
||||
## Star 历史
|
||||
|
||||
|
@ -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()
|
||||
|
@ -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')}`
|
||||
},
|
||||
})
|
||||
|
||||
|
@ -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 {
|
||||
|
@ -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])
|
||||
|
||||
|
@ -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
|
||||
|
4
src/typings/api.d.ts
vendored
4
src/typings/api.d.ts
vendored
@ -14,11 +14,13 @@ declare namespace ApiAuth {
|
||||
email?: string
|
||||
/* 用户昵称 */
|
||||
nickname?: string
|
||||
notes?: string
|
||||
/* 用户电话 */
|
||||
tel?: string
|
||||
/** 用户角色类型 */
|
||||
role: Auth.RoleType
|
||||
/** 访问toekn */
|
||||
accessToken: string
|
||||
/** 刷新toekn */
|
||||
refreshToken: string
|
||||
}
|
||||
}
|
||||
|
9
src/typings/global.d.ts
vendored
9
src/typings/global.d.ts
vendored
@ -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
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
||||
|
@ -22,7 +22,7 @@ const appName = import.meta.env.VITE_APP_NAME
|
||||
style="background: var(--card-color);box-shadow: var(--box-shadow-1);"
|
||||
>
|
||||
<div class="w-full flex flex-col items-center">
|
||||
<SvgIcon name="logo" :size="80" />
|
||||
<SvgIconsLogo class="text-6em" />
|
||||
<n-h3>{{ appName }} </n-h3>
|
||||
<transition
|
||||
name="fade-slide"
|
||||
|
Loading…
x
Reference in New Issue
Block a user