vue.draggable 編寫表格拖拽排序
阿新 • • 發佈:2019-01-05
主要使用vuedraggable和sortablejs兩個元件。
1、安裝元件
npm install vuedraggable
npm install sortablejs
2、引入元件
import draggable from 'vuedraggable';
import Sortable from 'sortablejs';
export default {
components: {
draggable,
Sortable
},
....
3、HTML
我的例子是給表格排序,專案整體使用的是ivew,所以用了ivew的柵格來畫表格
<Row class="draggableTable-head">
<Col span="1">序號</Col>
<Col span="2">商品條碼</Col>
<Col span="3">商品名稱</Col>
<Col span="1">單位</Col>
</Row>
<draggable class="list-group" v-model="tableData" :options="{draggable:'.rows'}"
:move ="getdata" @update="datadragEnd">
<Row class="rows" v-for="(item,index) in tableData" :key="index">
<Col span="1">
<div class="cell">{{index+1}}</div>
</Col>
<Col span="2">
<div class="cell">{{item.barCode}}</div >
</Col>
<Col span="2">
<div class="cell">{{item.name}}</div>
</Col>
<Col span="2">
<div class="cell">{{item.unit}}</div>
</Col>
</Row>
</draggable>
options中draggable的值是拖動的class。一開始怎麼都不能拖動,加上這個就可以了。
4、兩個方法
move:拖動中
update:拖拽結束
getdata (data) {
// console.log('getdata方法');
},
datadragEnd (evt) {
// console.log('datadragEnd方法');
console.log('拖動前的索引 :' + evt.oldIndex)
console.log('拖動後的索引 :' + evt.newIndex)
}
表格的處理邏輯是:
1、當前行的id和排序號作為引數,呼叫後臺更改順序的方法
2、不論呼叫成功與否,都重新渲染表格資料
【注意】如果有分頁,那麼傳給後臺的排序號就要再加上之前的條數,即(頁碼-1)*每頁條數