From 01e4d309cc4d355f5de1b34e1123431b9aa53b7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Tue, 2 Jan 2024 14:20:56 +0800 Subject: [PATCH] fix 80115 --- .../standardProcurementProcess/StandardProcurementProcess.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue index 48cc1809..4c83796f 100644 --- a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue +++ b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue @@ -341,6 +341,7 @@ export default { return this.selectedRowKeys.includes(index) ? null : tt }).filter(tt => !!tt) this.selectedRowKeys = [] + this.$message.success(this.$t('successfullyDelete')) } }) }, @@ -353,6 +354,7 @@ export default { content: this.$t('areYouSure'), onOk: () => { this.dataSource.splice(index, 1) + this.$message.success(this.$t('successfullyDelete')) } }) },