您好,登錄后才能下訂單哦!
這篇文章主要介紹了Vue怎么實現table上下移動功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
結合Element組件,scope中有三個參數(row,cow,$index)分別表示行內容、列內容、以及此行索引值,
table上綁定數組 :data="tableList"
<el-table :data="tableList"> </el-table>
添加一列,里面放上上移和下調兩個按鈕,并綁定上函數,將此行的索引值(scope.$index
)作為參數,樣式根據需求自己調整:
<el-button icon="el-icon-arrow-up" :disabled="scope.$index === 0" @click="upFieldOrder(scope.$index)"></el-button> <el-button icon="el-icon-arrow-down" :disabled="scope.$index === tableList.length - 1" @click="downFieldOrder(scope.$index)"></el-button>
直接使用下面這種方式是錯誤的,雖然tableList的值變了,但是不會觸發視圖的更新:
upFieldOrder (index) { let temp = this.tableList[index-1]; this.tableList[index-1] = this.tableList[index] this.tableList[index] = temp },
正確的上移函數:
upFieldOrder (index) { let temp = this.tableList[index-1]; Vue.set(this.tableList, index-1, this.tableList[index]) Vue.set(this.tableList, index, temp) },
同理,下移函數如下:
downFieldOrder (index) { let i = this.tableList[index+1]; Vue.set(this.tableList, index+1, this.tableList[index]) Vue.set(this.tableList, index, i) }
如此,前端的調整table順序功能便做好了,我不是在每一次點擊都與后臺交互傳入新Order,在頁面銷毀時,一并提交:
destroyed() { let param = { infos: [] } this.tableList.forEach((dataItem,index) => { param.infos.push({ 參數1: dataItem.值1, 參數1: dataItem.值2, 參數順序: index }) }); // 調用后臺,并傳入 param changeTableOrder(param).then(res => { if(res.success=== true) { alert('順序調整成功') } }) }
感謝你能夠認真閱讀完這篇文章,希望小編分享的“Vue怎么實現table上下移動功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。