From cb117beee9f7e93cc2efdaee0c383baab1bbdf40 Mon Sep 17 00:00:00 2001 From: danshihao Date: Wed, 17 Jul 2024 10:45:07 +0800 Subject: [PATCH] =?UTF-8?q?[update=20=E6=A0=87=E5=87=86=E8=A7=A3=E8=AF=BB?= =?UTF-8?q?=E6=B5=81=E7=A8=8B]=20=E5=8A=A0=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/workCenter.js | 3 --- .../StandardInterpretationProcess.vue | 8 +++++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/api/workCenter.js b/src/api/workCenter.js index 8b8c16a..211045e 100644 --- a/src/api/workCenter.js +++ b/src/api/workCenter.js @@ -79,8 +79,6 @@ const interpretFlowReject = (params) => postAction('/process/standardInterpretFl const interpretFlowSave = (params) => postAction('/process/standardInterpretFlow/flowSave', params) // 转办 const interpretFlowTransfer = (params) => getAction('/process/standardInterpretFlow/flowTransfer', params) -// 加签 -const interpretFlowCountersign = (params) => getAction('/process/standardInterpretFlow/flowCountersign', params) // 获取详情 const interpretGetDetail = (params) => getAction('/process/standardInterpretFlow/queryDetail', params) @@ -150,7 +148,6 @@ export { interpretFlowReject, interpretFlowSave, interpretFlowTransfer, - interpretFlowCountersign, interpretGetDetail, compulsoryWithdrawal, diff --git a/src/views/workCenter/standardInterpretationProcess/StandardInterpretationProcess.vue b/src/views/workCenter/standardInterpretationProcess/StandardInterpretationProcess.vue index 64e9dc8..b480b43 100644 --- a/src/views/workCenter/standardInterpretationProcess/StandardInterpretationProcess.vue +++ b/src/views/workCenter/standardInterpretationProcess/StandardInterpretationProcess.vue @@ -149,7 +149,8 @@ import { interpretFlowSave, interpretFlowReject, interpretFlowTransfer, - getLookData, interpretFlowCountersign + getLookData, + processAddSign } from '@api/workCenter' import InterpretationInitiate from '@views/workCenter/standardInterpretationProcess/modules/InterpretationInitiate' import UserSelectModal from '@comp/selection/UserSelectModal' @@ -522,9 +523,10 @@ export default { const params = { projectId: this.projectId, taskId: this.$route.query.taskId, - userId + userId, + prcType: ProcessType.STANDARD_INTERPRETATION_PROCESS.value } - interpretFlowCountersign(params).then(res => { + processAddSign(params).then(res => { if (res.success) { this.$message.success(res.message) } else {