[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
@@ -153,7 +153,13 @@ export default {
},
// 征求意见的删除
handleDelete (index) {
this.dataSource.splice(index, 1)
this.$confirm({
title: this.$t('confirmDeletion'),
content: this.$t('areYouSure'),
onOk: () => {
this.dataSource.splice(index, 1)
}
})
},
// 征求意见新增编辑完成
modalFormOk (value, index) {