From 18e764b4d8c85b9b87020d608e8ecd7869dc4ab2 Mon Sep 17 00:00:00 2001 From: danshihao Date: Fri, 19 Jan 2024 11:11:02 +0800 Subject: [PATCH] fix 80768 --- .../modules/InspectionPlanTable.vue | 2 ++ .../modules/InspectionProcessContent.vue | 1 + .../modules/InspectionProcessRectificationPlan.vue | 1 + .../modules/InspectionProcessReport.vue | 1 + .../modules/InspectionProcessTable.vue | 4 ++++ .../modules/ExtensionRequestTable.vue | 2 ++ .../permissionApplicationProcess/modules/BaseInfoTable.vue | 1 + 7 files changed, 12 insertions(+) diff --git a/src/views/workCenter/enterpriseStandardInspectionPlan/modules/InspectionPlanTable.vue b/src/views/workCenter/enterpriseStandardInspectionPlan/modules/InspectionPlanTable.vue index 566d2fc1..4f99e733 100644 --- a/src/views/workCenter/enterpriseStandardInspectionPlan/modules/InspectionPlanTable.vue +++ b/src/views/workCenter/enterpriseStandardInspectionPlan/modules/InspectionPlanTable.vue @@ -335,6 +335,7 @@ export default { }, // 添加或编辑回调 handleAddOrEditCallback (row, index) { + this.$message.success(this.$t('operationSuccessful')) console.log('添加或编辑回调', row, index) // index -1就是添加 if (index === undefined || index === -1) { @@ -388,6 +389,7 @@ export default { }, // 填写意见回调 handleWriteOpinionCallback (data, index) { + this.$message.success(this.$t('operationSuccessful')) console.log(data, index) this.dataSource.splice(index, 1, { ...this.dataSource[index], diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContent.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContent.vue index fecd04c6..a21b223d 100644 --- a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContent.vue +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContent.vue @@ -166,6 +166,7 @@ export default { }, // 意见新增编辑完成 modalFormOk (row, index) { + this.$message.success(this.$t('operationSuccessful')) console.log(row, index) // 根据下标判断是添加还是编辑 if (index === undefined || index === -1) { diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlan.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlan.vue index b6c2f54e..287a5be4 100644 --- a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlan.vue +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlan.vue @@ -218,6 +218,7 @@ export default { }, // 新增编辑完成 modalFormOk (row, index) { + this.$message.success(this.$t('operationSuccessful')) console.log(row, index) // 根据下标判断是添加还是编辑 if (index === undefined || index === -1) { diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReport.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReport.vue index 49239e56..39fbe94c 100644 --- a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReport.vue +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReport.vue @@ -202,6 +202,7 @@ export default { }, // 表单回调 modalFormOk (row, index) { + this.$message.success(this.$t('operationSuccessful')) console.log(row, index) // 根据下标判断是添加还是编辑 if (index === undefined || index === -1) { diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTable.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTable.vue index 6f942e58..844e1cd9 100644 --- a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTable.vue +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTable.vue @@ -271,6 +271,7 @@ export default { }, // 稽查内容回调 handleContentCallback (data, index) { + this.$message.success(this.$t('operationSuccessful')) console.log('稽查内容回调', data, index) this.dataSource.splice(index, 1, { ...this.dataSource[index], @@ -280,6 +281,7 @@ export default { }, // 稽查报告回调 handleReportCallback (data, index) { + this.$message.success(this.$t('operationSuccessful')) console.log('稽查报告回调', data, index) this.dataSource.splice(index, 1, { ...this.dataSource[index], @@ -288,6 +290,7 @@ export default { }, // 整改计划回调 handleRectificationCallback (data, index) { + this.$message.success(this.$t('operationSuccessful')) console.log('整改计划回调', data, index) this.dataSource.splice(index, 1, { ...this.dataSource[index], @@ -301,6 +304,7 @@ export default { }, // 添加稽查计划回调 handleAddPlanCallback (list) { + this.$message.success(this.$t('operationSuccessful')) this.dataSource.push(...list) }, // 跳转详情 diff --git a/src/views/workCenter/inspectionExtensionRequestProcess/modules/ExtensionRequestTable.vue b/src/views/workCenter/inspectionExtensionRequestProcess/modules/ExtensionRequestTable.vue index e28800fc..1f78ceac 100644 --- a/src/views/workCenter/inspectionExtensionRequestProcess/modules/ExtensionRequestTable.vue +++ b/src/views/workCenter/inspectionExtensionRequestProcess/modules/ExtensionRequestTable.vue @@ -239,6 +239,7 @@ export default { }, // 添加回调 handleAddCallback (rows) { + this.$message.success(this.$t('operationSuccessful')) this.dataSource.push(...rows) }, // 设置表格数据 @@ -267,6 +268,7 @@ export default { }, // 申请延期回调 requestExtensionCallback (row, index) { + this.$message.success(this.$t('operationSuccessful')) this.dataSource.splice(index, 1, row) }, // 跳转详情 diff --git a/src/views/workCenter/permissionApplicationProcess/modules/BaseInfoTable.vue b/src/views/workCenter/permissionApplicationProcess/modules/BaseInfoTable.vue index 6867901d..f9b31147 100644 --- a/src/views/workCenter/permissionApplicationProcess/modules/BaseInfoTable.vue +++ b/src/views/workCenter/permissionApplicationProcess/modules/BaseInfoTable.vue @@ -121,6 +121,7 @@ export default { }, // 添加标准回调 changeStandardSelect (val) { + this.$message.success(this.$t('operationSuccessful')) this.dataSource = [...this.dataSource, ...val] }, // 跳转详情