feat: remove support single role permission

This commit is contained in:
chansee97 2025-01-20 22:47:43 +08:00
parent e5222bbbc6
commit 30f0ac0904
3 changed files with 8 additions and 15 deletions

View File

@ -1,12 +1,11 @@
import { useAuthStore } from '@/store' import { useAuthStore } from '@/store'
import { isArray, isString } from 'radash'
/** 权限判断 */ /** 权限判断 */
export function usePermission() { export function usePermission() {
const authStore = useAuthStore() const authStore = useAuthStore()
function hasPermission( function hasPermission(
permission: Entity.RoleType | Entity.RoleType[] | undefined, permission?: Entity.RoleType[],
) { ) {
if (!permission) if (!permission)
return true return true
@ -15,13 +14,9 @@ export function usePermission() {
return false return false
const { role } = authStore.userInfo const { role } = authStore.userInfo
let has = role === 'super' let has = role.includes('super')
if (!has) { if (!has) {
if (isArray(permission)) has = permission.every(i => role.includes(i))
has = permission.includes(role)
if (isString(permission))
has = permission === role
} }
return has return has
} }

View File

@ -7,7 +7,7 @@ namespace Api {
/** 用户id */ /** 用户id */
id: number id: number
/** 用户角色类型 */ /** 用户角色类型 */
role: Entity.RoleType role: Entity.RoleType[]
/** 访问toekn */ /** 访问toekn */
accessToken: string accessToken: string
/** 刷新toekn */ /** 刷新toekn */

View File

@ -4,7 +4,7 @@ import { useAuthStore } from '@/store'
const authStore = useAuthStore() const authStore = useAuthStore()
const { hasPermission } = usePermission() const { hasPermission } = usePermission()
const { role } = authStore.userInfo! const { role } = authStore.userInfo
const roleList: Entity.RoleType[] = ['super', 'admin', 'user'] const roleList: Entity.RoleType[] = ['super', 'admin', 'user']
@ -23,7 +23,7 @@ function toggleUserRole(role: Entity.RoleType) {
</n-button-group> </n-button-group>
<n-h2>v-permission 指令用法</n-h2> <n-h2>v-permission 指令用法</n-h2>
<n-space> <n-space>
<n-button v-permission="'super'"> <n-button v-permission="['super']">
仅super可见 仅super可见
</n-button> </n-button>
<n-button v-permission="['admin']"> <n-button v-permission="['admin']">
@ -33,10 +33,10 @@ function toggleUserRole(role: Entity.RoleType) {
<n-h2>usePermission 函数用法</n-h2> <n-h2>usePermission 函数用法</n-h2>
<n-space> <n-space>
<n-button v-if="hasPermission('super')"> <n-button v-if="hasPermission(['super'])">
super可见 super可见
</n-button> </n-button>
<n-button v-if="hasPermission('admin')"> <n-button v-if="hasPermission(['admin'])">
admin可见 admin可见
</n-button> </n-button>
<n-button v-if="hasPermission(['admin', 'user'])"> <n-button v-if="hasPermission(['admin', 'user'])">
@ -45,5 +45,3 @@ function toggleUserRole(role: Entity.RoleType) {
</n-space> </n-space>
</n-card> </n-card>
</template> </template>
<style scoped></style>