溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何利用Vue-draggable組件實現(xiàn)Vue項目中表格內(nèi)容的拖拽排序

發(fā)布時間:2021-04-26 13:34:24 來源:億速云 閱讀:452 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)如何利用Vue-draggable組件實現(xiàn)Vue項目中表格內(nèi)容的拖拽排序的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

Vue的優(yōu)點

Vue具體輕量級框架、簡單易學(xué)、雙向數(shù)據(jù)綁定、組件化、數(shù)據(jù)和結(jié)構(gòu)的分離、虛擬DOM、運行速度快等優(yōu)勢,Vue中頁面使用的是局部刷新,不用每次跳轉(zhuǎn)頁面都要請求所有數(shù)據(jù)和dom,可以大大提升訪問速度和用戶體驗。

Vue-draggable 的github傳送門 :

https://github.com/SortableJS/Vue.Draggable

一. 下載依賴包:npm install vuedraggable -S 

二. 在需要使用的當(dāng)前界面引入依賴,注冊組件:

import draggable from "vuedraggable";
export default {
 components: {
 draggable,
 }

三. 在template 中建立表格,分別寫出thead 部分不變, 此處需要將draggable 渲染成tbody,不然draggable會被解析成div 影響樣式。

(渲染方法:<draggable v-model="tablelist" element="tbody">)

<table class="dataTabble">
 <thead>
 <tr>
  <th width="110">欄目名稱</th>
  <th width="200">發(fā)布時間</th>
  <th width="160">公告數(shù)量</th>
  <th width="160">操作</th>
 </tr>
 </thead>
 <draggable v-model="tablelist" element="tbody" :move="getdata" @update="datadragEnd">
 <tr v-for="(item,id) in tablelist" :key="id">
  <td>{{item.name}}</td>
  <td>{{item.time}}</td>
  <td>{{item.num}}</td>
  <td>
  <div class="tabopa">
   <a @click="dialogFormVisible = true" >添加</a>
   <a @click="open2">刪除</a>
  </div>
  </td>
 </tr>
 </draggable>
</table>
<div class="zhu mt40">提示:拖動可對欄目進(jìn)行排序</div>

此處data部分,通過{ {   } } 獲取data中數(shù)據(jù),實際中通過請求獲取

data() {
 return {
 tablelist: [
  { id: 1, name: "活動消息1", time: "2018-08-25 14:54", num: "1000" },
  { id: 2, name: "公司消息2", time: "2018-08-25 14:54", num: "200" },
  { id: 3, name: "個人消息3", time: "2018-08-25 14:54", num: "30000" },
  { id: 4, name: "客戶消息4", time: "2018-08-25 14:54", num: "40" }
 ],
 };
},

四.相關(guān)方法

獲取拖動中和拖動結(jié)束時的id

methods: {
 //拖動中與拖動結(jié)束
 getdata(evt) {
  console.log(evt.draggedContext.element.id);
 },
 datadragEnd(evt) {
  console.log("拖動前的索引 :" + evt.oldIndex);
  console.log("拖動后的索引 :" + evt.newIndex);
  console.log(this.tags);
 },

 五.貼出全部代碼

<template>
 <div>
 <!--main-->
   <table class="dataTabble">
    <thead>
    <tr>
     <th width="110">欄目名稱</th>
     <th width="200">發(fā)布時間</th>
     <th width="160">公告數(shù)量</th>
     <th width="160">操作</th>
    </tr>
    </thead>
    <draggable v-model="tablelist" element="tbody" :move="getdata" @update="datadragEnd">
    <tr v-for="(item,id) in tablelist" :key="id">
     <td>{{item.name}}</td>
     <td>{{item.time}}</td>
     <td>{{item.num}}</td>
     <td>
     <div class="tabopa">
      <a @click="dialogFormVisible = true" >添加</a>
      <a @click="open2">刪除</a>
     </div>
     </td>
    </tr>
    </draggable>
   </table>
   <div class="zhu mt40">提示:拖動可對欄目進(jìn)行排序</div>
 <!--main end-->
 </div>
</template>
<script>
import draggable from "vuedraggable";
export default {
 components: {
 draggable,
 },
 data() {
 return {
  tablelist: [
  { id: 1, name: "活動消息1", time: "2018-08-25 14:54", num: "1000" },
  { id: 2, name: "公司消息2", time: "2018-08-25 14:54", num: "200" },
  { id: 3, name: "個人消息3", time: "2018-08-25 14:54", num: "30000" },
  { id: 4, name: "客戶消息4", time: "2018-08-25 14:54", num: "40" }
  ],
 };
 },
 methods: {
 //拖動中與拖動結(jié)束
 getdata(evt) {
  console.log(evt.draggedContext.element.id);
 },
 datadragEnd(evt) {
  console.log("拖動前的索引 :" + evt.oldIndex);
  console.log("拖動后的索引 :" + evt.newIndex);
  console.log(this.tags);
 },
 }
}
</script>
<style>
</style>

感謝各位的閱讀!關(guān)于“如何利用Vue-draggable組件實現(xiàn)Vue項目中表格內(nèi)容的拖拽排序”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI