119 lines
3.5 KiB
Vue
119 lines
3.5 KiB
Vue
<script lang="ts" setup>
|
||
import type { LoginAndRegisterParams } from '@vben/universal-ui';
|
||
|
||
import { useRouter } from 'vue-router';
|
||
|
||
import { CodeAuthority, useAccess } from '@vben/access';
|
||
|
||
import { Button } from 'ant-design-vue';
|
||
|
||
import { useAccessStore, useAppStore } from '#/store';
|
||
|
||
defineOptions({ name: 'AccessBackend' });
|
||
|
||
const accounts: Record<string, LoginAndRegisterParams> = {
|
||
admin: {
|
||
password: '123456',
|
||
username: 'admin',
|
||
},
|
||
super: {
|
||
password: '123456',
|
||
username: 'vben',
|
||
},
|
||
user: {
|
||
password: '123456',
|
||
username: 'jack',
|
||
},
|
||
};
|
||
|
||
const { accessMode, hasAuthByCodes } = useAccess();
|
||
const accessStore = useAccessStore();
|
||
const appStore = useAppStore();
|
||
const router = useRouter();
|
||
|
||
function roleButtonType(role: string) {
|
||
return accessStore.userRoles.includes(role) ? 'primary' : 'default';
|
||
}
|
||
|
||
async function changeAccount(role: string) {
|
||
if (accessStore.userRoles.includes(role)) {
|
||
return;
|
||
}
|
||
|
||
const account = accounts[role];
|
||
await appStore.resetAppState();
|
||
await accessStore.authLogin(account, async () => {
|
||
router.go(0);
|
||
});
|
||
}
|
||
</script>
|
||
|
||
<template>
|
||
<div class="p-5">
|
||
<div class="card-box p-5">
|
||
<h1 class="text-xl font-semibold">后端页面访问权限演示</h1>
|
||
<div class="text-foreground/80 mt-2">切换不同的账号,观察按钮变化。</div>
|
||
</div>
|
||
|
||
<template v-if="accessMode === 'backend'">
|
||
<div class="card-box mt-5 p-5 font-semibold">
|
||
<div class="mb-3">
|
||
<span class="text-lg">当前账号:</span>
|
||
<span class="text-primary mx-4">
|
||
{{ accessStore.userRoles }}
|
||
</span>
|
||
</div>
|
||
|
||
<Button :type="roleButtonType('super')" @click="changeAccount('super')">
|
||
切换为 Super 账号
|
||
</Button>
|
||
|
||
<Button
|
||
:type="roleButtonType('admin')"
|
||
class="mx-4"
|
||
@click="changeAccount('admin')"
|
||
>
|
||
切换为 Admin 账号
|
||
</Button>
|
||
<Button :type="roleButtonType('user')" @click="changeAccount('user')">
|
||
切换为 User 账号
|
||
</Button>
|
||
</div>
|
||
|
||
<div class="card-box mt-5 p-5 font-semibold">
|
||
<div class="mb-3 text-lg">组件形式控制</div>
|
||
<CodeAuthority :value="['AC_100100']">
|
||
<Button class="mr-4"> Super 账号可见 ["AC_1000001"] </Button>
|
||
</CodeAuthority>
|
||
<CodeAuthority :value="['AC_100030']">
|
||
<Button class="mr-4"> Admin 账号可见 ["AC_100010"] </Button>
|
||
</CodeAuthority>
|
||
<CodeAuthority :value="['AC_1000001']">
|
||
<Button class="mr-4"> User 账号可见 ["AC_1000001"] </Button>
|
||
</CodeAuthority>
|
||
<CodeAuthority :value="['AC_100100', 'AC_100010']">
|
||
<Button class="mr-4">
|
||
Super & Admin 账号可见 ["AC_100100","AC_1000001"]
|
||
</Button>
|
||
</CodeAuthority>
|
||
</div>
|
||
|
||
<div class="card-box mt-5 p-5 font-semibold">
|
||
<div class="mb-3 text-lg">函数形式控制</div>
|
||
<Button v-if="hasAuthByCodes(['AC_100100'])" class="mr-4">
|
||
Super 账号可见 ["AC_1000001"]
|
||
</Button>
|
||
<Button v-if="hasAuthByCodes(['AC_100030'])" class="mr-4">
|
||
Admin 账号可见 ["AC_100010"]
|
||
</Button>
|
||
<Button v-if="hasAuthByCodes(['AC_1000001'])" class="mr-4">
|
||
User 账号可见 ["AC_1000001"]
|
||
</Button>
|
||
<Button v-if="hasAuthByCodes(['AC_100100', 'AC_1000001'])" class="mr-4">
|
||
Super & Admin 账号可见 ["AC_100100","AC_1000001"]
|
||
</Button>
|
||
</div>
|
||
</template>
|
||
</div>
|
||
</template>
|