效果图:

element-ui的el-dialog对话框,没有拖拽移动的效果,需要自定义指令来实现对话框拖拽。

1.准备:在准备一个vue组件(点击按钮弹出对话框)

// 功能:弹出一个对话框--element-ui默认dialog对话框不能拖拽
<template>
  <div>
    <!-- 按钮 -->
    <el-button @click="dialogVisible = true">点击显示对话框</el-button>
    <!-- 对话框 -->
    <el-dialog
      title="提示"
      :visible.sync="dialogVisible"
      width="30%"
    >
      <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>
export default {
  data() {
    return {
      dialogVisible: false
    };
  },
  created() {},
  methods: {}
};
</script>

<style lang="scss" scoped>
</style>

2.自定义指令:在src/directives文件夹下创建dialogDrag.js文件

//自定义指令:实现element-ui对话框dialog拖拽功能
import Vue from 'vue'
 
// v-dialogDrag: 弹窗拖拽
Vue.directive('dialogDrag', {
  bind(el, binding, vnode, oldVnode) {
    const dialogHeaderEl = el.querySelector('.el-dialog__header')
    const dragDom = el.querySelector('.el-dialog')
    dialogHeaderEl.style.cursor = 'move'
 
    // 获取原有属性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);
    const sty = dragDom.currentStyle || window.getComputedStyle(dragDom, null)
 
    dialogHeaderEl.onmousedown = (e) => {
      // 鼠标按下,获得鼠标在盒子内的坐标(鼠标在页面的坐标 减去 对话框的坐标),计算当前元素距离可视区的距离
      const disX = e.clientX - dialogHeaderEl.offsetLeft
      const disY = e.clientY - dialogHeaderEl.offsetTop
 
      // 获取到的值带px 正则匹配替换
      let styL, styT
 
      // 注意在ie中 第一次获取到的值为组件自带50% 移动之后赋值为px
      if (sty.left.includes('%')) {
        styL = +document.body.clientWidth * (+sty.left.replace(/\%/g, '') / 100)
        styT = +document.body.clientHeight * (+sty.top.replace(/\%/g, '') / 100)
      } else {
        styL = +sty.left.replace(/\px/g, '')
        styT = +sty.top.replace(/\px/g, '')
      }
 
      document.onmousemove = function(e) {
        // 鼠标移动,用鼠标在页面的坐标 减去 鼠标在盒子里的坐标,获得模态框的left和top值
        // 通过事件委托,计算移动的距离
        const l = e.clientX - disX
        const t = e.clientY - disY
 
        // 移动当前元素
        dragDom.style.left = `${l + styL}px`
        dragDom.style.top = `${t + styT}px`
 
        // 将此时的位置传出去
        // binding.value({x:e.pageX,y:e.pageY})
      }
 
      document.onmouseup = function(e) {
        //  鼠标弹起,移除鼠标移动事件
        document.onmousemove = null
        document.onmouseup = null
      }
    }
  }
})


 3.引用:在main.js文件中全局引用

import './directives/dialogDrag'//全局引入v-dialogDrag自定义指令

 4.使用:在vue组件中添加v-dialogDrag属性

  //自定义指令:  v-dialogDrag

   //点击遮罩层关闭对话框: close-on-click-modal

   //显示遮罩层: modal

   //防止有溢出:设置样式 overflow: hidden;

    <el-dialog  v-dialogDrag   :close-on-click-modal="false"   :modal="false"   class="my-dialog">
Logo

前往低代码交流专区

更多推荐