Browse Source

优化通用表格添加、删除行方法

master
李磊 3 years ago
parent
commit
b50f62267c
  1. 44
      src/utils/table.js
  2. 5
      src/views/ysjl/3000/dj/common/table.vue

44
src/utils/table.js

@ -129,49 +129,69 @@ export default {
* 添加行 * 添加行
* @param tableData$refs * @param tableData$refs
* @param row 默认行数据如果C1为true那么则将C1的数值转换为索引值如果不给则默认为{} * @param row 默认行数据如果C1为true那么则将C1的数值转换为索引值如果不给则默认为{}
* @param indexColumn 序号的字段
*/ */
addRow(tableData$refs, row) { addRow(tableData$refs, row, indexColumn) {
if (!row) { // 如果没有给出每行默认值时 if (!row) { // 如果没有给出每行默认值时
row = {} row = {}
} }
row.index = tableData$refs.data.length
if (row.C1) { // 序号
const index = tableData$refs.data.length + 1
// 如果存在index列,则将index列按排序生成,从1开始数
tableData$refs.columns.some((v) => { tableData$refs.columns.some((v) => {
if (v.property && v.type === 'index') { if (v.property && v.type === 'index') {
row[v.property] = tableData$refs.data.length + 1 row.index = index
return true return true
} }
}) })
// 如果存在序号字段,则将序号按排序生成,从1开始数
if (indexColumn) {
row[indexColumn] = index
} }
tableData$refs.data.push(row) tableData$refs.data.push(row)
setTimeout(() => { setTimeout(() => {
tableData$refs.setCurrentRow(row) tableData$refs.setCurrentRow(row)
}, 10) // 用于延时渲染后选中这行 }, 10) // 用于延时渲染后选中这行
}, },
/** /**
* 删除行需要保证每一行都有一个index属性 * 删除行
* 建议使用方法index列要有这个属性 :index="indexMethod"
* 建议方法内容
* indexMethod(index) {
this.tableData[index].index = index
return (index + 1)
}
* @param tableData$refs * @param tableData$refs
* @param indexColumn 序号的字段
*/ */
delRow(tableData$refs) { delRow(tableData$refs, indexColumn) {
if (tableData$refs.selection.length === 0) { if (tableData$refs.selection.length === 0) {
Vue.prototype.$message({ Vue.prototype.$message({
message: '请选中需要删除的数据!', message: '请选中需要删除的数据!',
type: 'error' type: 'error'
}) })
} else { } else {
// 删除选中的行
for (let i = 0; i < tableData$refs.selection.length; i++) { for (let i = 0; i < tableData$refs.selection.length; i++) {
const index = tableData$refs.data.indexOf(tableData$refs.selection[i]) const index = tableData$refs.data.indexOf(tableData$refs.selection[i])
tableData$refs.data.splice(index, 1) tableData$refs.data.splice(index, 1)
} }
// 如果存在index列,则将index列按排序生成,从1开始数
tableData$refs.columns.some((v) => {
if (v.property && v.type === 'index') {
for (let i = 0; i < tableData$refs.data.length; i++) { for (let i = 0; i < tableData$refs.data.length; i++) {
tableData$refs.data[i].index = i + 1 tableData$refs.data[i].index = i + 1
} }
return true
}
})
// 如果存在序号字段,则将序号按排序生成,从1开始数
if (indexColumn) {
for (let i = 0; i < tableData$refs.data.length; i++) {
tableData$refs.data[i][indexColumn] = i + 1
}
}
// 清除选中状态
tableData$refs.clearSelection() tableData$refs.clearSelection()
} }
} }

5
src/views/ysjl/3000/dj/common/table.vue

@ -1,10 +1,10 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<div class="searchBox"> <div class="searchBox">
<el-button type="primary" @click="tableJs.addRow($refs.fubiao)"> <el-button type="primary" size="mini" icon="el-icon-circle-plus-outline" @click="tableJs.addRow($refs.fubiao, false)">
新增 新增
</el-button> </el-button>
<el-button type="danger" @click="tableJs.delRow($refs.fubiao)"> <el-button type="danger" size="mini" icon="el-icon-remove-outline" @click="tableJs.delRow($refs.fubiao, false)">
删除 删除
</el-button> </el-button>
</div> </div>
@ -13,7 +13,6 @@
ref="fubiao" ref="fubiao"
:data.sync="tableData" :data.sync="tableData"
border border
style="width: 100%"
> >
<el-table-column <el-table-column
type="selection" type="selection"

Loading…
Cancel
Save