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 @@