
npm install sortablejs --save
<el-table :data="statisticsChexkboxs" border max-height="300px" width="740px" row-key="id"
ref="projectTable">
<el-table-column v-for="item in confirmHead" :key="item.label" :label="item.label" :prop="item.prop"
:width="item.width" align="center" show-overflow-tooltip>
<el-table-column label="操作" fixed="right" width="200" align="center">
<template slot-scope="scope">
<el-link type="info" icon="el-icon-top" style="margin-right: 8px" :underline="false"
@click="handleUp(scope.row, scope.$index)">上移
<el-divider direction="vertical"></el-divider>
</el-link>
<el-link type="info" icon="el-icon-bottom" style="margin-right: 8px" :underline="false"
@click="handleDown(scope.row, scope.$index)">下移
</el-link>
</template>
</el-table-column>
</el-table>
import Sortable from 'sortablejs';
data() {
return {
sortable: null,
orderSort: false,
data: [],
}
}
methods:{
handleUp(item, index) {
this.statisticsChexkboxs.splice(index - 1, 0, item);
this.statisticsChexkboxs.splice(index + 1, 1);
this.handleOrderTable(this.statisticsChexkboxs)
},
handleDown(item, index) {
this.statisticsChexkboxs.splice(index + 2, 0, item);
this.statisticsChexkboxs.splice(index, 1);
this.handleOrderTable(this.statisticsChexkboxs)
},
setSort() {
this.$nextTick(() => {
const el = this.$refs.projectTable.$el.querySelectorAll(
'.el-table__body-wrapper > table > tbody'
)[0];
this.sortable = Sortable.create(el, {
animation: 150,
setData: function (dataTransfer) {
dataTransfer.setData('Text', '');
},
onEnd: evt => {
const targetRow = this.statisticsChexkboxs.splice(evt.oldIndex, 1)[0];
this.statisticsChexkboxs.splice(evt.newIndex, 0, targetRow);
this.handleOrderTable(this.statisticsChexkboxs)
}
});
})
},
handleOrderTable(value) {
let vaueData = value.map((item) => {
return {
detailId: item.id,
shipOrder: item.shipOrder,
};
});
dxjTransportAdjustShipOrder(vaueData).then((res) => {
const { code, msg } = res.data
const title = code === 200 ? '操作成功' : '操作失败'
const type = code === 200 ? 'success' : 'error'
this.$notification(title, type, msg)
})
},
}
updated() {
this.setSort()
},

- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83