[update] 企标计划立项变更流程

This commit is contained in:
lideqin
2023-10-27 18:25:46 +08:00
parent 4b8ec3112c
commit 39c01388b0
3 changed files with 13 additions and 19 deletions
@@ -17,7 +17,7 @@
:can-drag="true"
:scroll="{x: '100%'}"
ref="table"
rowKey="enterpriseStandardPlanId"
rowKey="espId"
:columns="columns"
:dataSource="dataSource"
:pagination="false"
@@ -211,7 +211,7 @@ export default {
},
// 批量删除
batchDel () {
this.dataSource = this.dataSource.filter(item => !this.selectedRowKeys.includes(item.enterpriseStandardPlanId))
this.dataSource = this.dataSource.filter(item => !this.selectedRowKeys.includes(item.espId))
}
}
}