From a2bcd47cb66c887fd6fd57358a52004aca3c0fbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Wed, 10 Jan 2024 14:58:13 +0800 Subject: [PATCH] fix 80065 --- .../ProjectComplianceEvaluationProcess.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue b/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue index 49ce6771..cad09943 100644 --- a/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue +++ b/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue @@ -1119,6 +1119,7 @@ export default { this.$set(this.dataSource, index, item) } }) + this.$message.success(this.$t('operationSuccessful')) this.selectedRowKeys = [] }, onSelectChange (selectedRowKeys) { @@ -1137,7 +1138,7 @@ export default { content: this.$t('deleteAData'), onOk: () => { this.dataSource = this.dataSource.filter(tt => !this.selectedRowKeys.includes(tt.tableRowKey)) - console.log(this.dataSource.map(tt => tt.tableRowKey)) + this.$message.success(this.$t('deleteSucceeded')) } }) },