This time I will bring you the use of Element-UI Table to implement the drag and drop function. What are the precautions for using the Element-UI Table to implement the drag and drop function? The following is a practical case, let's take a look.
Element-UI’s Table component is very powerful, but our needs are even more powerful...
A simple and crude rendering:
1. Data-driven
The traditional drag effect is based on modification through mousedown, mousemove, mouseup events Delete the dom node
But Vue is a data-driven front-end framework, you should try to avoid operating the dom during development
And the Table component of Element-UI is very rigorously encapsulated, so it is easy to directly operate the dom Unpredictable bugs occur
So my core idea is:Render the table header (column) through an array, and then modify the order of the array, thereby modifying the column sorting of the list
template part:
<p> <el-table> <slot></slot> <el-table-column> </el-table-column> </el-table> </p>
The above data is the list data collection, option is the Table component configuration item, header is the table header data collection, passed in by the parent component
props: { data: { default: function () { return [] }, type: Array }, header: { default: function () { return [] }, type: Array }, option: { default: function () { return {} }, type: Object } }
Configuration items can be deleted according to the Element-UI api
But several parameters are required inside the component:
1. header-cell-class-name
Bound a function to dynamically add a class to the header cell to achieve the dotted line effect during dragging.
2. column-key
is bound to the index of the header array and is used to determine the subscript of the header element that needs to be modified
3. render-header
Header rendering function is used to add custom methods to monitor mousemove and other related events
2. Record dragging status
Several key parameters need to be recorded during the dragging process:
data () { return { tableHeader: this.header, dragState: { start: -1, // 起始元素的 index end: -1, // 结束元素的 index move: -1, // 移动鼠标时所覆盖的元素 index dragging: false, // 是否正在拖动 direction: undefined // 拖动方向 } } }
In addition, the parent element passes in a header data header, but this data will be modified after the dragging is completed
It is not recommended to directly modify the data of the parent element in the child component, so a tableHeader is initialized here to host the header data header
But in order to allow the tableHeader to respond to the modification when the header is modified, it is necessary Add a monitor watch
watch: { header (val, oldVal) { this.tableHeader = val } }
3. Customize the header
The Table component of Element-UI In order to realize the function of [drag the border to modify the column width], The three events of mousemove, mouseup, and mousedown are not exposed
So you need to customize the header and manually add the mouse event processing function, which requires usingrenderHeader() Method
renderHeader (createElement, {column}) { return createElement( 'p', { 'class': ['thead-cell'], on: { mousedown: ($event) => { this.handleMouseDown($event, column) }, mouseup: ($event) => { this.handleMouseUp($event, column) }, mousemove: ($event) => { this.handleMouseMove($event, column) } } }, [ // 添加 <a> 用于显示表头 label createElement('a', column.label), // 添加一个空标签用于显示拖动动画 createElement('span', { 'class': ['virtual'] }) ]) },</a>
Among the three mouse events, the first parameter is the event object, and the second is the header object
In the corresponding processing function, you can pass column.columnKey Get the corresponding header element subscript index
Empty label is used to display the animation during dragging (Dotted line)
4. Event processing
When the mouse is pressed, the starting column is recorded. When the mouse is lifted, the ending column is recorded. The drag direction is calculated based on the difference between the two.
Then the header data is reordered according to the positions of the starting column and the ending column, so as to realize column dragging.
The processing function of the dragging process is as follows:
// 按下鼠标开始拖动 handleMouseDown (e, column) { this.dragState.dragging = true this.dragState.start = parseInt(column.columnKey) // 给拖动时的虚拟容器添加宽高 let table = document.getElementsByClassName('w-table')[0] let virtual = document.getElementsByClassName('virtual') for (let item of virtual) { item.style.height = table.clientHeight - 1 + 'px' item.style.width = item.parentElement.parentElement.clientWidth + 'px' } }, // 鼠标放开结束拖动 handleMouseUp (e, column) { this.dragState.end = parseInt(column.columnKey) // 记录起始列 this.dragColumn(this.dragState) // 初始化拖动状态 this.dragState = { start: -1, end: -1, move: -1, dragging: false, direction: undefined } }, // 拖动中 handleMouseMove (e, column) { if (this.dragState.dragging) { let index = parseInt(column.columnKey) // 记录起始列 if (index - this.dragState.start !== 0) { this.dragState.direction = index - this.dragState.start min && i <p style="text-align: left;"><strong>5. Dotted line effect</strong></p><p style="text-align: left;">During the dragging process, change the header status of the current column through the mousemove event</p><p style="text-align: left;">Then use <span style="color: #3366ff"><strong>headerCellClassName </strong></span>Dynamic modification of its class</p><pre class="brush:php;toolbar:false">headerCellClassName ({column, columnIndex}) { return (columnIndex - 1 === this.dragState.move ? `darg_active_${this.dragState.direction}` : '') }
This class will be added to the header cell
Post the complete style I wrote myself (using sass as the compilation tool):
<style> .w-table { .el-table th { padding: 0; .virtual{ position: fixed; display: block; width: 0; height: 0; margin-left: -10px; z-index: 99; background: none; border: none; } &.darg_active_left { .virtual { border-left: 2px dotted #666; } } &.darg_active_right { .virtual { border-right: 2px dotted #666; } } } .thead-cell { padding: 0; display: inline-flex; flex-direction: column; align-items: left; cursor: pointer; overflow: initial; &:before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; right: 0; } } &.w-table_moving { .el-table th .thead-cell{ cursor: move !important; } .el-table__fixed { cursor: not-allowed; } } }</style>
6. Parent component call
<template> <p> <wtable> <el-table-column> </el-table-column> </wtable> </p> </template> <script> import wTable from '@/components/w-table.vue' export default { name: 'Table', data () { return { tableOption: { border: true, maxHeight: 500 }, tableHeader: [{ prop: 'name', label: '姓名', sortable: true, sortMethod: this.handleNameSort }, { prop: 'province', label: '省份', minWidth: '120' }, { prop: 'city', label: '市区', minWidth: '120' }, { prop: 'address', label: '地区', minWidth: '150' }, { prop: 'zip', label: '邮编', minWidth: '120' }], tableData: [{ date: '2016-05-03', name: '王小虎', province: '上海', city: '普陀区', address: '上海市普陀区金沙江路 1518 弄', zip: 200333 }, { date: '2016-05-02', name: '王小虎', province: '上海', city: '普陀区', address: '上海市普陀区金沙江路 1518 弄', zip: 200333 }, { date: '2016-05-04', name: '王小虎', province: '上海', city: '普陀区', address: '上海市普陀区金沙江路 1518 弄', zip: 200333 }, { date: '2016-05-01', name: '王小虎', province: '上海', city: '普陀区', address: '上海市普陀区金沙江路 1518 弄', zip: 200333 }, { date: '2016-05-08', name: '王小虎', province: '上海', city: '普陀区', address: '上海市普陀区金沙江路 1518 弄', zip: 200333 }, { date: '2016-05-06', name: '王小虎', province: '上海', city: '普陀区', address: '上海市普陀区金沙江路 1518 弄', zip: 200333 }] } }, methods: { handleNameSort () { console.log('handleNameSort') } }, components: { wTable } } </script>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
The above is the detailed content of Use Element-UI Table to implement drag and drop function. For more information, please follow other related articles on the PHP Chinese website!

如何使用JavaScript实现图片的拖拽缩放功能?在现代web开发中,实现图片的拖拽和缩放是常见的需求。通过使用JavaScript,我们可以轻松地为图片添加拖拽和缩放功能,提供更好的用户体验。在本篇文章中,将介绍如何使用JavaScript来实现这一功能,以及附有具体的代码示例。HTML结构首先,我们需要一个基本的HTML结构来展示图片,并为图片添

element.style修改元素的方法:1、修改元素的背景颜色;2、修改元素的字体大小;3、修改元素的边框样式;4、修改元素的字体样式;5、修改元素的水平对齐方式。详细介绍:1、修改元素的背景颜色,其语法为“document.getElementById("myElement").style.backgroundColor = "red";”;2、修改元素的字体大小等等。

在艾尔登法环中这款游戏的ui页面在一段时间以后是会自动进行隐藏的,有很多玩家不知道ui怎么一直显示,玩家可以在显示以及声音配置中选择其中的量表显示配置,点击开启即可。艾尔登法环ui怎么一直显示1、首先我们进入主菜单后,点击【系统配置】。2、在【显示及声音配置】界面,选择其中的量表显示配置。3、点击开启即可完成。

Vue是一款流行的JavaScript框架,适合用于构建单页面应用(SPA)。其支持通过指令和组件等方式实现拖拽选中及放置的功能,为用户提供了更好的交互体验。本文将介绍在Vue中实现拖拽选中及放置的技巧及最佳实践。拖拽指令Vue提供了一个v-draggable指令,可以轻松地实现拖拽效果。该指令可以被应用于任何元素上,并且可以自定义拖拽的样

Vue是一款流行的JavaScript框架,它使用组件化的方式构建Web应用程序。在Vue生态系统中,有很多UI组件库可以帮助您快速构建漂亮的界面,并提供丰富的功能和交互效果。在本文中,我们将介绍一些常见的VueUI组件库。ElementUIElementUI是一款由饿了么团队开发的Vue组件库,它为开发人员提供了一组优雅,

如何使用Vue实现拖拽排序特效Vue.js是一款流行的JavaScript框架,它能够帮助我们构建交互性强的前端应用程序。在Vue中,我们可以很容易地实现拖拽排序特效,让用户可以通过拖动元素的方式进行数据排序。本文将介绍如何使用Vue实现拖拽排序特效,并提供具体的代码示例。首先,我们需要创建一个Vue的实例,并定义一个数组来存储要排序的数据。在示例中,我们将

Vue实战技巧:使用v-on指令处理鼠标拖拽事件前言:Vue.js是一个流行的JavaScript框架,它的简洁易用和灵活性使得它成为了众多开发者的首选。在Vue应用开发中,处理用户交互事件是必不可少的一项技能。本文将介绍如何使用Vue的v-on指令来处理鼠标拖拽事件,并提供具体的代码示例。创建Vue实例:首先,在HTML文件中引入Vue.js的库文件:&

Vue是一款流行的JavaScript框架,它提供了方便的拖拽功能,让我们可以轻易地实现元素的复制和移动。下面,我们就来看一下如何在Vue中实现拖拽元素的复制和移动。一、拖拽元素的基本实现在Vue中实现拖拽元素的复制和移动,首先需要实现元素的基本拖拽功能。具体实现方法如下:在模板中添加需要拖拽的元素:<divclass="drag-elem


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
