mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 03:05:07 +08:00
feat: plugin-access中导出hasAccessSync方法
This commit is contained in:
parent
db99bb9bc4
commit
56f6120f88
@ -145,8 +145,13 @@ export const install = (app) => {
|
||||
app.component("Access", createComponent(useAccess));
|
||||
};
|
||||
|
||||
export const hasAccessSync = (path) => {
|
||||
return match(unref(path), getAllowAccessIds());
|
||||
}
|
||||
|
||||
export const access = {
|
||||
hasAccess,
|
||||
hasAccessSync,
|
||||
isDataReady,
|
||||
setRole,
|
||||
getRole: () => {
|
||||
@ -158,10 +163,6 @@ export const access = {
|
||||
setPresetAccess,
|
||||
};
|
||||
|
||||
export const hasAccessSync = (path) => {
|
||||
return match(unref(path), getAllowAccessIds());
|
||||
}
|
||||
|
||||
export const useAccess = (path) => {
|
||||
const allowPageIds = computed(getAllowAccessIds);
|
||||
const result = computed(() => {
|
||||
|
4
packages/fes-plugin-access/types.d.ts
vendored
4
packages/fes-plugin-access/types.d.ts
vendored
@ -3,10 +3,14 @@ import type { Ref } from 'vue';
|
||||
|
||||
export const access: {
|
||||
hasAccess: (accessId: string | number) => Promise<boolean>;
|
||||
hasAccessSync: (accessId: string | number) => boolean;
|
||||
isDataReady: () => boolean;
|
||||
setRole: (roleId: string | Promise<string>) => void;
|
||||
getRole: () => string;
|
||||
setAccess: (accessIds: Array<string | number> | Promise<Array<string | number>>) => void;
|
||||
getAccess: () => string[];
|
||||
match: (path: string, accessIds: string[]) => boolean;
|
||||
setPresetAccess: (accessId: string | string[]) => void;
|
||||
};
|
||||
|
||||
export function useAccess(accessId: string | number): Ref<boolean>;
|
||||
|
Loading…
x
Reference in New Issue
Block a user