feat: plugin access 添加 getRole 接口 (#207)

This commit is contained in:
qlin 2023-08-23 19:11:08 +08:00 committed by GitHub
parent 862b229158
commit fdaf1fde73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 1 deletions

View File

@ -227,6 +227,16 @@ import { access } from '@fesjs/fes';
access.setRole('admin'); access.setRole('admin');
``` ```
#### access.getRole
- **类型**:函数
- **详情**:获取当前的角色。
```js
import { access } from '@fesjs/fes';
access.getRole();
```
#### access.setAccess #### access.setAccess
- **类型**:函数 - **类型**:函数

View File

@ -138,6 +138,9 @@ export const access = {
hasAccess, hasAccess,
isDataReady, isDataReady,
setRole, setRole,
getRole: () => {
return state.currentRoleId
},
setAccess, setAccess,
match, match,
getAccess: getAllowAccessIds, getAccess: getAllowAccessIds,

View File

@ -6,13 +6,14 @@ import UserCenter from '@/components/userCenter.vue';
export const beforeRender = { export const beforeRender = {
loading: <PageLoading />, loading: <PageLoading />,
action() { action() {
const { setRole } = accessApi; const { setRole, getRole } = accessApi;
return new Promise((resolve) => { return new Promise((resolve) => {
setTimeout(() => { setTimeout(() => {
setRole('admin'); setRole('admin');
resolve({ resolve({
userName: '李雷', userName: '李雷',
}); });
console.log('currentRole', getRole());
createWatermark({ content: '万纯(harrywan)' }); createWatermark({ content: '万纯(harrywan)' });
}, 1000); }, 1000);
}); });