Vue ELement Table技巧表格業務需求實戰示例
前言
在我們日常開發中,表格業務基本是必不可少的,對於老手來說確實簡單,傢常便飯罷瞭,但是對於新手小白如何最快上手搞定需求呢?本文從思路開始著手,幫你快速搞定表格。
常見業務
需求:合並行
1. 合並條碼一樣的兩行
2. 觸摸高亮關閉,表格顏色重一點
思路分析
調取element Table的回調
通過給table
傳入span-method
方法可以實現合並行或列,方法的參數是一個對象,裡面包含當前行row
、當前列column
、當前行號rowIndex
、當前列號columnIndex
四個屬性。該函數可以返回一個包含兩個元素的數組,第一個元素代表rowspan
,第二個元素代表colspan
。 也可以返回一個鍵名為rowspan
和colspan
的對象。
<div v-loading="loading"> <el-table :span-method="objectSpanMethod" class="unbound-table" ref="cateTable" :data="tbldata.content" header-row-class-name="custom-table-header-color_default"> <el-table-column v-for="col in tableColumns" :key="col.name" :prop="col.name" :label="col.label" :width="col.width"> <template slot-scope="scope"> <div v-if="col.name === 'action'" style="text-align: center" class="action-list"> <el-button v-permission="['admin_add_stdproduct']" type="primary" @click="handleImport(scope.row)">導入標準產品庫</el-button> </div> <span v-else> {{ scope.row[col.name] }} </span> </template> </el-table-column> </el-table> <!-- 分頁 --> <div class="pagination-container"> <el-pagination layout="prev, pager, next" @current-change="loadTable" :current-page.sync="pageable.page" :page-size="pageable.size" :total="tbldata.total" v-if="tbldata.total"></el-pagination> </div> </div>
data(){ return{ spanArr:[], position:0 } } //表格合同方法 --- 此處隻合並瞭第一列 objectSpanMethod({ row, column, rowIndex, columnIndex }){ if (columnIndex === 0) { const _row = this.spanArr[rowIndex]; const _col = _row > 0 ? 1 : 0; return { rowspan: _row, colspan: _col }; } }, //篩出行裡面相同的數據的index 並組裝進數組--------請求完表格數據後調用一下這個方法 rowspan() { this.spanArr = [] this.tableData.forEach((item, index) => { if (index === 0) { this.spanArr.push(1); this.position = 0; } else { if (this.tableData[index].code=== this.tableData[index - 1].code) { this.spanArr[this.position] += 1; this.spanArr.push(0); } else { this.spanArr.push(1); this.position = index; } } }); },
.el-table ::v-deep tbody tr:hover > td { background-color: transparent; } .el-table ::v-deep tbody tr td { border-bottom: 1px solid #d6d6d6; }
需求合並列
需求將兩列合並為一列
思路分析
通過給table
傳入span-method
方法可以實現合並行或列,方法的參數是一個對象,裡面包含當前行row
、當前列column
、當前行號rowIndex
、當前列號columnIndex
四個屬性。該函數可以返回一個包含兩個元素的數組,第一個元素代表rowspan
,第二個元素代表colspan
。 也可以返回一個鍵名為rowspan
和colspan
的對象。 表格數據為一維數組,隻需要將一維數組變為二維數組即可
let arr = [ {regulationsId: 5172, title: "測試111標題2 ", type: 610, state: 1, createdTime: 1530152467000}, {regulationsId: 5169, title: "測試111標題", type: 610, state: 1, createdTime: 1530085573000}, {regulationsId: 5170, title: "測試123標題", type: 609, state: 1, createdTime: 1530085687000}, {regulationsId: 5171, title: "測試1122標題", type: 608, state: 1, createdTime: 1530085750000} ]; //獲取數組中有多少個type let types = []; arr.map((item, index) => { if(types.indexOf(item.type) === -1){ types.push(item.type) } }) //一個包含多個list的結果對象 let obj = []; // 根據type生成多個數組 types.map((typeItem, typeIndex) => { arr.map((arrItem, arrIndex) => { if(arrItem.type == typeItem){ obj[typeIndex] = obj[typeIndex] || []; obj[typeIndex].push(arrItem) } }) })
你可能想去看的
Vue實戰技巧Element Table二次封裝
Vue從零到一重構後臺管理項目
以上就是Vue ELement Table技巧表格業務需求實戰示例的詳細內容,更多關於Vue ELement Table表格業務的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- Element UI中table單元格合並的解決過程
- element 動態合並表格的步驟
- vue使用el-table動態合並列及行
- element table 表格控件實現單選功能
- vue+el-table實現合並單元格