[update 标准解读流程] 加签

This commit is contained in:
danshihao
2024-07-17 10:45:07 +08:00
parent 8d14e3941f
commit cb117beee9
2 changed files with 5 additions and 6 deletions
-3
View File
@@ -79,8 +79,6 @@ const interpretFlowReject = (params) => postAction('/process/standardInterpretFl
const interpretFlowSave = (params) => postAction('/process/standardInterpretFlow/flowSave', params) const interpretFlowSave = (params) => postAction('/process/standardInterpretFlow/flowSave', params)
// 转办 // 转办
const interpretFlowTransfer = (params) => getAction('/process/standardInterpretFlow/flowTransfer', 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) const interpretGetDetail = (params) => getAction('/process/standardInterpretFlow/queryDetail', params)
@@ -150,7 +148,6 @@ export {
interpretFlowReject, interpretFlowReject,
interpretFlowSave, interpretFlowSave,
interpretFlowTransfer, interpretFlowTransfer,
interpretFlowCountersign,
interpretGetDetail, interpretGetDetail,
compulsoryWithdrawal, compulsoryWithdrawal,
@@ -149,7 +149,8 @@ import {
interpretFlowSave, interpretFlowSave,
interpretFlowReject, interpretFlowReject,
interpretFlowTransfer, interpretFlowTransfer,
getLookData, interpretFlowCountersign getLookData,
processAddSign
} from '@api/workCenter' } from '@api/workCenter'
import InterpretationInitiate from '@views/workCenter/standardInterpretationProcess/modules/InterpretationInitiate' import InterpretationInitiate from '@views/workCenter/standardInterpretationProcess/modules/InterpretationInitiate'
import UserSelectModal from '@comp/selection/UserSelectModal' import UserSelectModal from '@comp/selection/UserSelectModal'
@@ -522,9 +523,10 @@ export default {
const params = { const params = {
projectId: this.projectId, projectId: this.projectId,
taskId: this.$route.query.taskId, taskId: this.$route.query.taskId,
userId userId,
prcType: ProcessType.STANDARD_INTERPRETATION_PROCESS.value
} }
interpretFlowCountersign(params).then(res => { processAddSign(params).then(res => {
if (res.success) { if (res.success) {
this.$message.success(res.message) this.$message.success(res.message)
} else { } else {