局部指令和全局指令的注册和使用

news/2024/12/22 23:16:34/

全局指令

先写一个js文件
在这里插入图片描述

import store from '@/store'
const directivePlugin = {install(Vue) {Vue.directive('checkBtn', {inserted(el, binding) {// el: 指令绑定的那个元素对象 dom// binding.value:  指令等于号后面绑定的表达式的值  v-if="xxx"// 拿到el 拿到value 配合权限数据 做按钮显示隐藏控制// 控制逻辑: 判断当前的按钮自身的权限标识能否在后端返回的points中找到 如果找到 证明要显示// 如果找不到 证明要隐藏// 1. 权限数据 -> points  // 2. binding.value -> 按钮自身的标识const points = store.state.user.userInfo.roles.pointsif (!points.includes(binding.value)) {// 把当前的按钮移除// 移除eldom 1. remove()  2. 先找到父节点 removeChildel.remove()}}})}
}export default directivePlugin

在main.ts文件中注册
在这里插入图片描述

在文件中使用
在这里插入图片描述

局部注册

先建立一个js文件

import store from "@/store";function checkPermission(el, binding) {const { value } = binding; //['admin']const roles = store.getters && store.getters.roles;console.log(roles, "roles");const permissions = store.getters && store.getters.permission; //空数组console.log(permissions, "permissions");if (value && value instanceof Array) {if (value.length > 0) {const permissionRoles = value;console.log(permissionRoles, "values"); //['admin']const hasRole = roles.some((role) => {return permissionRoles.includes("ROLE_" + role.roleCode);});// console.log(hasRole, "hasRole");//trueconst hasPermission = permissions.some((permissions) => {return permissionRoles.includes(permissions);});console.log(hasPermission, "hasPermission");if (!hasPermission && !hasRole) {console.log(111);el.parentNode && el.parentNode.removeChild(el);}}} else {throw new Error(`need roles! Like v-permission="['admin','editor']"`);}
}export default {inserted(el, binding) {console.log(el, binding);checkPermission(el, binding);},update(el, binding) {checkPermission(el, binding);},
};

在文件中使用

  <div class="filter-container" v-permission="['SUPERADMIN']"><el-button type="primary" @click="addUser"><i class="el-icon-plus"></i>添加用户</el-button></div>

在文件中定义

import permission from "@/directive/permission/permission.js";
export default {directives: {permission,},
}

http://www.ppmy.cn/news/1222659.html

相关文章

C++静态成员友元命名空间介绍

定义 静态成员&#xff1a;静态成员是类的成员&#xff0c;它们在类定义中声明&#xff0c;但与类的实例无关。它们可以通过类名和静态成员函数访问&#xff0c;而不是通过类的实例。静态成员可以是数据成员&#xff08;变量&#xff09;或函数成员&#xff08;函数&#xff0…

java Stream操作

java stream操作 Stream是什么 Stream又称为流&#xff0c;可以将集合转换为一种流&#xff0c;对集合中的每个元素进行一系列的流式操作&#xff0c;流并不存储元素&#xff0c;对流的操作也不会修改数据源 数据源 ------转换为--》流----》进行中间操作----》终止操作 多个中…

2311rust到31版本更新

1.27.1稳定版 在此修补程序前,下例在编译器内部恐慌. fn main() {let a vec!["".to_string()];a.iter().enumerate().take_while(|(_, &t)| false).collect::<Vec<_>>(); }1.27.1拒绝上述代码,并显示以下错误消息: error[E0507]: cannot move ou…

【Gateway】基于ruoyi-cloud-plus项目,gateway局部过滤器和过滤返回以及集成nacos

1.使用Gateway路由转发 1.1标题引入依赖 <dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-gateway</artifactId></dependency>1.2添加YML配置 spring:cloud:gateway:# 打印请求日志(自定义)…

使用requests库设置no_proxy选项的方法

问题背景 在使用requests库进行HTTP请求时&#xff0c;如果需要使用爬虫IP服务器&#xff0c;可以通过设置proxies参数来实现。proxies参数是一个字典&#xff0c;其中包含了爬虫IP服务器的地址和端口号。然而&#xff0c;当前的requests库并不支持通过proxies参数来设置no_pr…

系列三、GC垃圾回收【总体概览】

一、GC垃圾回收【总体概览】 JVM进行GC时&#xff0c;并非每次都对上面的三个内存区域&#xff08;新生区、养老区、元空间/永久代&#xff09;一起回收&#xff0c;大部分回收的是新生区里边的垃圾&#xff0c;因此GC按照回收的区域又分为了两种类型&#xff0c;一种是发生在新…

U盘不能访问不一定是坏了,可能还有其他原因!U盘无法访问修复详解

当你将USB驱动器连接到计算机时,系统会将其识别为可移动驱动器,并启动其文件管理过程。 然而,用户现在注意到,即使可以检测到他们的USB驱动器,也无法访问它们。 如果幸运的话,拔下插头就能解决问题,但如果不是,请继续阅读以了解更多故障排除选项。 USB闪存驱动器是便…

Android开发:(AndroidStudio模拟器)如何将模拟器语言设置为中文 模拟器输入法更改为中文输入 键盘输入中文

文章目录 Android开发模拟器设置将模拟器语言设置为中文输入法中文的设置 Android开发模拟器设置 将模拟器语言设置为中文 第一步&#xff1a;打开模拟器后&#xff0c;上滑打开下面的设置图标。 第二步&#xff1a;找到 System (系统) &#xff0c;点击进入。 第三步&am…