ElementUI的Dialog弹窗实现拖拽移动功能

概要

在项目中使用el-dialog中发现不能够拖拽移动,因此网上找了相关资料,使用自定义指令实现拖拽功能。

1、创建自定义指令

新建文件directive/el-drag-dialog/index.js

import drag from "./drag";
const install = function (Vue) {
  Vue.directive("el-drag-dialog", drag);
};
if (window.Vue) {
  window["el-drag-dialog"] = drag;
  Vue.use(install);
}
drag.install = install;
export default drag;

新建文件directive/el-drag-dialog/drag.js

export default {
  bind(el, binding, vnode) {
    const dialogHeaderEl = el.querySelector(".el-dialog__header");
    const dragDom = el.querySelector(".el-dialog");
    dialogHeaderEl.style.cssText += ";cursor:move;";
    dragDom.style.cssText += ";top:0px;";

    // 获取原有属性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);
    const getStyle = (function () {
      if (window.document.currentStyle) {
        return (dom, attr) => dom.currentStyle[attr];
      } else {
        return (dom, attr) => getComputedStyle(dom, false)[attr];
      }
    })();

    dialogHeaderEl.onmousedown = (e) => {
      // 鼠标按下,计算当前元素距离可视区的距离
      const disX = e.clientX - dialogHeaderEl.offsetLeft;
      const disY = e.clientY - dialogHeaderEl.offsetTop;

      const dragDomWidth = dragDom.offsetWidth;
      const dragDomheight = dragDom.offsetHeight;

      const screenWidth = document.body.clientWidth;
      const screenHeight = document.body.clientHeight;

      const minDragDomLeft = dragDom.offsetLeft;
      const maxDragDomLeft = screenWidth - dragDom.offsetLeft - dragDomWidth;

      const minDragDomTop = dragDom.offsetTop;
      const maxDragDomTop = screenHeight - dragDom.offsetTop - dragDomheight;

      // 获取到的值带px 正则匹配替换
      let styL = getStyle(dragDom, "left");
      let styT = getStyle(dragDom, "top");

      if (styL.includes("%")) {
        styL = +document.body.clientWidth * (+styL.replace(/%/g, "") / 100);
        styT = +document.body.clientHeight * (+styT.replace(/%/g, "") / 100);
      } else {
        styL = +styL.replace(/\px/g, "");
        styT = +styT.replace(/\px/g, "");
      }

      document.onmousemove = function (e) {
        // 通过事件委托,计算移动的距离
        let left = e.clientX - disX;
        let top = e.clientY - disY;

        // 边界处理
        if (-left > minDragDomLeft) {
          left = -minDragDomLeft;
        } else if (left > maxDragDomLeft) {
          left = maxDragDomLeft;
        }

        if (-top > minDragDomTop) {
          top = -minDragDomTop;
        } else if (top > maxDragDomTop) {
          top = maxDragDomTop;
        }

        // 移动当前元素
        dragDom.style.cssText += `;left:${left + styL}px;top:${top + styT}px;`;

        // emit onDrag event
        vnode.child.$emit("dragDialog");
      };

      document.onmouseup = function () {
        document.onmousemove = null;
        document.onmouseup = null;
      };
    };
  },
};

2、引入自定义指令

在这里插入图片描述

import elDragDialog from "@/directive/el-drag-dialog";
directives: {
    elDragDialog
}

3、使用自定义指令(v-el-darg-dialog)

<el-dialog
   v-el-drag-dialog
   title="提示"
   :visible.sync="dialogVisible"
   width="30%"
   :before-close="handleClose"
   v-if="dialogVisible"
 >
   <span>这是一段信息</span>
   <span slot="footer" class="dialog-footer">
     <el-button @click="dialogVisible = false">取 消</el-button>
     <el-button type="primary" @click="dialogVisible = false"
       >确 定</el-button
     >
   </span>
 </el-dialog>

其中v-el-drag-dialog为自定义指令,v-if主要为了处理每次打开弹框都在中间位置。

4、完整代码:

<template>
  <div>
    <el-button @click="dialogVisible = true">打开弹框</el-button>
    <el-dialog
      v-el-drag-dialog
      title="提示"
      :visible.sync="dialogVisible"
      width="30%"
      :before-close="handleClose"
      v-if="dialogVisible"
    >
      <span>这是一段信息</span>
      <span slot="footer" class="dialog-footer">
        <el-button @click="dialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="dialogVisible = false"
          >确 定</el-button
        >
      </span>
    </el-dialog>
  </div>
</template>

<script>
import elDragDialog from "@/directive/el-drag-dialog";
export default {
  name: "DialogView",
  directives: {
    elDragDialog,
  },
  data() {
    return {
      dialogVisible: false,
    };
  },
  methods: {
    handleClose() {
      this.dialogVisible = false;
    },
  },
};
</script>

5、效果:

在这里插入图片描述

  • 19
    点赞
  • 16
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
ElementUI是一套基于Vue.js的组件库,其中包含了弹窗组件。以下是实现弹窗的步骤: 1. 安装ElementUI 使用npm或yarn安装ElementUI: ``` npm install element-ui ``` 或者 ``` yarn add element-ui ``` 2. 引入ElementUI 在Vue项目的main.js文件中,引入ElementUI: ```javascript import Vue from 'vue' import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css' Vue.use(ElementUI) ``` 3. 使用ElDialog组件 在需要弹窗的组件中,使用ElDialog组件: ```html <template> <div> <el-button @click="openDialog">打开弹窗</el-button> <el-dialog :visible.sync="dialogVisible"> <span>这是一个弹窗</span> </el-dialog> </div> </template> <script> export default { data() { return { dialogVisible: false } }, methods: { openDialog() { this.dialogVisible = true } } } </script> ``` 在上面的代码中,ElDialog组件的visible属性控制弹窗的显示与隐藏,使用.sync修饰符可以实现双向绑定。方法openDialog()用来打开弹窗,即将dialogVisible属性设为true。 4. 设置弹窗属性 ElDialog组件还有许多属性可以设置,例如弹窗的标题、大小、是否可以拖拽等。以下是一些常用的属性: ```html <el-dialog title="弹窗标题" :visible.sync="dialogVisible" width="50%" :before-close="handleClose" :close-on-click-modal="false" > <span>这是一个弹窗</span> </el-dialog> ``` 其中,title属性设置弹窗的标题,width属性设置弹窗的宽度,before-close属性设置弹窗关闭前的回调函数,close-on-click-modal属性设置是否点击遮罩层关闭弹窗。 5. 自定义弹窗内容 ElDialog组件还可以自定义弹窗的内容,例如使用插槽来替换默认的底部按钮: ```html <el-dialog title="弹窗标题" :visible.sync="dialogVisible" > <span>这是一个弹窗</span> <template #footer> <el-button @click="dialogVisible = false">关闭</el-button> <el-button type="primary" @click="submitForm">提交</el-button> </template> </el-dialog> ``` 在上面的代码中,使用了插槽#footer来替换默认的底部按钮。其中,@click事件绑定了关闭弹窗和提交表单的方法。 至此,就完成了使用ElementUI实现弹窗的过程。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值