[update] 修改bug80375

This commit is contained in:
lideqin
2024-01-08 15:49:32 +08:00
parent 8160f5e1c3
commit 42eb43c4ff
6 changed files with 42 additions and 6 deletions
@@ -157,7 +157,13 @@ export default {
},
// 删除
handleDelete (id, index) {
this.dataSource.splice(index, 1)
this.$confirm({
title: this.$t('confirmDeletion'),
content: this.$t('areYouSure'),
onOk: () => {
this.dataSource.splice(index, 1)
}
})
},
// 新增或编辑完成
modalFormOk (value) {