首页 > 其他分享 >vue2和vue3自定义指令实现只读模式,禁止用户编辑

vue2和vue3自定义指令实现只读模式,禁止用户编辑

时间:2024-07-05 09:54:33浏览次数:16  
标签:el style const readonlyMask 自定义 ._ mask vue2 vue3

解决代码表单组件大量disable的麻烦,实现只读。只需要在需要的地方加上v-read-only即可达到只读效果,快捷方便。

实现思路

  1. 父元素下添加一个遮罩层元素
  2. 遮罩层元素的显示隐藏由参数决定

要想简单快捷的实现,最好用的就是写一个遮罩层,通过遮罩来隔绝用户的操作。

原始代码如下:

<template>
 <div class="resource-association-item">
    <div v-if="visible" class="read-only"></div>
    <!-- 真正的业务代码 -->
    <div>
      <div>配置项1</div>
      <div>配置项2</div>
      <div>配置项3</div>
      <div>配置项4</div>
    </div>
</div> 
</template>

<script>
export default {
  name: 'ResourceAssociationItem',
  props: {
    visible: {
      type: Boolean,
      default: false
    }
  }
}

<style lang="scss" scoped>
.resource-association-item {
  display: flex;
  align-items: center;
  margin: 16px 0 22px 0;
  justify-content: space-between;
  position: relative;
  .read-only {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100%);
    background: rgba(255, 255, 255, 0.5);
    z-index: 10;
  }
}
</style>
vue2上代码
import Vue from 'vue'

const readOnly = {
  bind(el, binding) {
    const mask = document.createElement('div')
    mask.className = 'read-only-mask'

    const defaultOptions = {
      top: '0',
      left: '0',
      width: '100%',
      height: '100%'
    }

    const options = { ...defaultOptions, ...(binding.value || {}) }

    mask.style.position = 'absolute'
    mask.style.top = options.top
    mask.style.left = options.left
    mask.style.width = options.width
    mask.style.height = options.height
    mask.style.background = 'rgba(255, 255, 255, 0.5)'
    mask.style.zIndex = '10'
    mask.style.cursor = 'not-allowed'

    el.style.position = 'relative'
    el.appendChild(mask)
    mask.style.display = options.visible ? 'block' : 'none'
    el._readonlyMask = mask
  },
  update(el, binding) {
    if (el._readonlyMask) {
      const options = { ...el._readonlyMask.dataset, ...(binding.value || {}) }
      el._readonlyMask.style.display = options.visible ? 'block' : 'none'
      el._readonlyMask.style.top = options.top
      el._readonlyMask.style.left = options.left
      el._readonlyMask.style.width = options.width
      el._readonlyMask.style.height = options.height
    }
  },
  unbind(el) {
    if (el._readonlyMask) {
      el._readonlyMask.remove()
      delete el._readonlyMask
    }
  }
}

Vue.directive('readOnly', readOnly)
vue3 版本
const readOnly = {
  beforeMount(el, binding) {
    let mask = null;
    if (!el._readonlyMask) {
      mask = document.createElement("div");
      mask.className = "read-only-mask";
    } else {
      mask = el._readonlyMask;
    }

    const defaultOptions = {
      visible: true,
      top: "0",
      left: "0",
      width: "100%",
      height: "100%",
    };

    // 初始化遮罩样式
    mask.style.position = "absolute";
    mask.style.top = defaultOptions.top;
    mask.style.left = defaultOptions.left;
    mask.style.width = defaultOptions.width;
    mask.style.height = defaultOptions.height;
    mask.style.background = "rgba(255, 255, 255, 0.5)";
    mask.style.zIndex = "10";
    mask.style.cursor = "not-allowed";

    el.style.position = "relative";
    el.appendChild(mask);
    el._readonlyMask = mask;

    // 根据传递的值设置遮罩样式
    readOnly.updateMaskStyle(el, binding);
  },
  updated(el, binding) {
    console.log("updated called", binding.value); // 添加调试日志
    readOnly.updateMaskStyle(el, binding);
  },
  unmounted(el) {
    if (el._readonlyMask) {
      el._readonlyMask.remove();
      delete el._readonlyMask;
    }
  },
  updateMaskStyle(el, binding) {
    const arg = binding.arg;
    const value = binding.value;

    if (arg === "visible") {
      el._readonlyMask.style.display = value ? "block" : "none";
    } else if (arg === "width") {
      el._readonlyMask.style.width = value;
    } else if (arg === "height") {
      el._readonlyMask.style.height = value;
    } else if (arg === "top") {
      el._readonlyMask.style.top = value;
    }
  },
};

export default readOnly;

局部使用:

<template>
  <div>
    <div 
      v-read-only:visible="readonlyOptions.visible" 
      v-read-only:width="readonlyOptions.width" 
      class="content"
    >
      <p>这个区域是只读的</p>
    </div>
    <button @click="toggleReadOnly">切换只读状态</button>
  </div>
</template>

<script setup>
import { ref, reactive } from 'vue';
import readOnly from '../directives/readonly.js';

const readonlyOptions = reactive({
  visible: true,// lcq 根据需求来
  top: '0',
  left: '0',
  width: '100%',
  height: '100%'
});

const toggleReadOnly = () => {
  readonlyOptions.visible = !readonlyOptions.visible;
  console.log(readonlyOptions.visible);
};
const vReadOnly = {
  ...readOnly
};
</script>


<style scoped>
.content {
  padding: 20px;
  border: 1px solid #ccc;
}
</style>

 

标签:el,style,const,readonlyMask,自定义,._,mask,vue2,vue3
From: https://www.cnblogs.com/lcaiqin/p/18285180

相关文章

  • 微信小程序-自定义组件数据监听器observers
    一.监测自定义组件data值定义data值,在.js文件里面定义data值data:{num:10,count:100,obj:{name:'tom',age:10},arr:[1,2,3]}只有在data值进行改变后才会触发到数据监听的回调函数,如果数据没有改变回调函数不会被触发ob......
  • python logging 自定义备份的日志文件命名
    importtimeimportloggingfromlogging.handlersimportTimedRotatingFileHandlerdeflog_file_namer(log_file_name):log_file_name_split=log_file_name.split('.')log_suffix=log_file_name_split.pop(1)log_file_name_split.append(l......
  • python教程:自定义函数
    1.多态我们可以看到,Python不用考虑输入的数据类型,而是将其交给具体的代码去判断执行,同样的一个函数(比如这边的相加函数my_sum()),可以同时应用在整型、列表、字符串等等的操作中。在编程语言中,我们把这种行为称为多态。这也是Python和其他语言,比如Java、C等很大的一个不同点......
  • vue3父组件 调用子组件 方法
    父组件:通过ref获取子组件实例<template><divstyle="text-align:center"><button@click="callChildMethod">点击获取子组件数据</button><div>获取到子组件的数据如下:<div>{{childData}}</div></div&......
  • uniapp 开发微信小程序自定义与胶囊平行的导航栏
    1、page.json中使用custom自定义导航栏{ "path":"pages/partners/index", "style":{ "navigationBarTitleText":"", "navigationStyle":"custom"//自定义导航栏样式 } },2、vue文件:<template> ......
  • Vue3 子【emit 】传父【监听】
    <!--父组件--><template><h1>IamParentComponent</h1><ChildComponent@child-click="zCf"/><h2>{{x}}</h2></template><scriptsetup>importChildComponentfrom'./ChildCom......
  • vue3 父组件【属性】传值给子组件【props】接收
     父组件文件:parentcomponent.vue子组件文件:childcomponent.vue传普通值传动态值传对象传数组<!--父组件--><template>   <h1>IamParentComponent</h1>   <ChildComponentmsg="nice"/>  </template><scriptsetup>   importC......
  • 在Linux中,自定义解析域名的时候,可以编辑哪个⽂件?是否可以⼀个ip对应多个域名?是否⼀个
    在Linux系统中,如果你想要自定义域名解析,通常有以下几种方法:编辑/etc/hosts文件:hosts文件是一个本地DNS解析文件,它允许你将域名映射到IP地址。你可以编辑这个文件来自定义域名解析。例如:192.168.1.10example.comwww.example.com在这个例子中,192.168.1.10是IP地址,exampl......
  • Log4Net配置详解及输出自定义消息类示例
    1.简单使用实例1.1添加log4net.dll的引用。  在NuGet程序包中搜索log4net并添加,此次我所用版本为2.0.17。如下图:1.2添加配置文件  右键项目,添加新建项,搜索选择应用程序配置文件,命名为log4net.config,步骤如下图:1.2.1log4net.config简单配置示例  下面是一个简单的......
  • Go语言--自定义函数
    定义格式函数构成代码执行的逻辑结构。在Go语言中,兩数的基本组成为:关键字func、函数名、参数列表、返回值、所数体和返回语句。函数定义说明:func:函数由关键字func开始声明FuncName:函数名称,根据约定,数名首字母小写即为private,大写即为public.参数列表:函数可以有0......