mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-01-26 08:28:13 +00:00
34 lines
985 B
Vue
34 lines
985 B
Vue
/**
|
|
* Global authority directive
|
|
* Used for fine-grained control of component permissions
|
|
* @Example v-auth="RoleEnum.TEST"
|
|
*/
|
|
import type { App, Directive, DirectiveBinding } from 'vue';
|
|
|
|
import { usePermission } from '/@/hooks/web/usePermission';
|
|
|
|
function isAuth(el: Element, binding: any) {
|
|
// update-begin--author:liaozhiyang---date:20240529---for【TV360X-460】basicForm支持v-auth指令(权限控制显隐)
|
|
const value = binding.value;
|
|
if (!value) return;
|
|
// update-end--author:liaozhiyang---date:20240529---for【TV360X-460】basicForm支持v-auth指令(权限控制显隐)
|
|
const { hasPermission } = usePermission();
|
|
if (!hasPermission(value)) {
|
|
el.parentNode?.removeChild(el);
|
|
}
|
|
}
|
|
|
|
const mounted = (el: Element, binding: DirectiveBinding<any>) => {
|
|
isAuth(el, binding);
|
|
};
|
|
|
|
const authDirective: Directive = {
|
|
mounted,
|
|
};
|
|
|
|
export function setupPermissionDirective(app: App) {
|
|
app.directive('auth', authDirective);
|
|
}
|
|
|
|
export default authDirective;
|