[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) {
@@ -189,7 +189,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) {
@@ -160,7 +160,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) {
@@ -203,7 +203,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) {
@@ -408,7 +408,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)
}
})
},
// 稽查内容新增编辑完成
checkContentOk (value, index) {
@@ -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) {