From 828c17142e76d5aec5a7ca484e68334025be66af Mon Sep 17 00:00:00 2001 From: fengachen <373943794@qq.com> Date: Thu, 28 Oct 2021 20:27:26 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90bug=E3=80=91=E6=9B=B4=E6=8D=A2?= =?UTF-8?q?=E5=88=86=E6=A0=87=E5=A7=94=E4=BC=9A=E8=AE=AE=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E7=9A=84=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/incomePaymentsApi.js | 3 ++ .../projectManagement/CommitteeMeeting.vue | 2 +- .../modules/PublishRemindModal.vue | 49 +++++++++++++------ 3 files changed, 38 insertions(+), 16 deletions(-) diff --git a/src/api/incomePaymentsApi.js b/src/api/incomePaymentsApi.js index 15f9aae..51095a6 100644 --- a/src/api/incomePaymentsApi.js +++ b/src/api/incomePaymentsApi.js @@ -6,6 +6,8 @@ const getWorkingGroupById = (params) => getAction('/project/payWorkingGroup/quer const getChargeNotice = (param) => getAction('/project/payWorkingGroupSubitem/getCharge', param) // 工作组会议的发布提醒 const publishRemind = (param) => postAction('/meeting/workGroupMeeting/publishReminder', param) +// 分标委会议的发布提醒 +const commitePublishRemind = (param) => postAction('/meeting/committeeMeeting/publishReminder',param) // 通过id获取收入合同信息 const getRevenueContractById = (param) => getAction('/contract/payIncomeContract/queryById', param) // 收入合同审核 @@ -83,6 +85,7 @@ export { getWorkingGroupById, getChargeNotice, publishRemind, + commitePublishRemind, getRevenueContractById, aduitRevenueContract, associatedProject, diff --git a/src/views/projectManagement/CommitteeMeeting.vue b/src/views/projectManagement/CommitteeMeeting.vue index 079f5fb..96e8533 100644 --- a/src/views/projectManagement/CommitteeMeeting.vue +++ b/src/views/projectManagement/CommitteeMeeting.vue @@ -394,7 +394,7 @@ export default { return } else { // 传入选中的会议id - this.$refs.publishRemindModal.open(this.selectedRowKeys) + this.$refs.publishRemindModal.open(this.selectedRowKeys,true) this.$refs.publishRemindModal.title = '发布' } diff --git a/src/views/projectManagement/modules/PublishRemindModal.vue b/src/views/projectManagement/modules/PublishRemindModal.vue index 2fbc7c3..e479674 100644 --- a/src/views/projectManagement/modules/PublishRemindModal.vue +++ b/src/views/projectManagement/modules/PublishRemindModal.vue @@ -66,7 +66,7 @@