From 423b5296175dcf1f45c79e548402af1cd2cab4d4 Mon Sep 17 00:00:00 2001 From: danshihao Date: Fri, 5 Jul 2024 15:37:15 +0800 Subject: [PATCH] =?UTF-8?q?[update=20=E5=8A=9F=E8=83=BD=E5=AE=89=E5=85=A8?= =?UTF-8?q?=E4=B8=AD=E5=BF=83=E4=BC=9A=E8=AE=AE]=20=E4=BC=9A=E8=AE=AE?= =?UTF-8?q?=E5=8F=91=E5=B8=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/incomePaymentsApi.js | 5 ++++- src/views/projectManagement/modules/PublishRemindModal.vue | 6 +++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/api/incomePaymentsApi.js b/src/api/incomePaymentsApi.js index 9236aa1..0498b37 100644 --- a/src/api/incomePaymentsApi.js +++ b/src/api/incomePaymentsApi.js @@ -173,6 +173,8 @@ const judgeCompanyIsPackaged = (params) => getAction('/company/payCompanyManagem // 2024年6月变更 功能安全中心 // 通过id获取功能安全中心详情 const getSafetyCenterById = (params) => getAction('/SafetyCenter/queryById', params) +// 功能安全中心会议的发布提醒 +const safetyCenterPublishRemind = (param) => postAction('/meeting/safetyCenterMeeting/release', param) export { getWorkingGroupById, @@ -263,5 +265,6 @@ export { updatePackageEnterprise, judgeCompanyIsPackaged, - getSafetyCenterById + getSafetyCenterById, + safetyCenterPublishRemind } diff --git a/src/views/projectManagement/modules/PublishRemindModal.vue b/src/views/projectManagement/modules/PublishRemindModal.vue index b7a505a..2048990 100644 --- a/src/views/projectManagement/modules/PublishRemindModal.vue +++ b/src/views/projectManagement/modules/PublishRemindModal.vue @@ -89,7 +89,7 @@ import { publishRemind, commitePublishRemind, councilPublishRemind, - draftGroupPublishRemind + draftGroupPublishRemind, safetyCenterPublishRemind } from '@api/incomePaymentsApi' import EmailErrorMsgModal from '@views/projectManagement/modules/EmailErrorMsgModal' import { judgeEmailStatus } from "@api/incomePaymentsApi"; @@ -387,6 +387,10 @@ export default { // 起草组用起草组的发布提醒 param.draftingGroupId = this.$route.query.draftingGroupProjectId requestFun = draftGroupPublishRemind + } else if (this.$route.query.meetingType === MeetingTypeEnums.safetyCenter.value) { + // 功能安全中心的发布提醒 + param.safetyCenterId = this.$route.query.projectId + requestFun = safetyCenterPublishRemind } else { // 工作组 param.workingGroupId = this.$route.query.workingGroupProjectId