除名修复接口对接调整

This commit is contained in:
cc_caijp 2026-01-09 11:48:02 +08:00
parent 016c017a8d
commit 47aecaad09
2 changed files with 22 additions and 19 deletions

View File

@ -83,17 +83,17 @@ export function expelledRepairStartBiz(data) {
// 除名修复业务审批流程
export function expelledRepairNextBiz(data) {
const form = new FormData()
console.log(form)
console.log(data)
for (const key in data) {
form.append(key, data[key])
}
console.log(form)
// const form = new FormData()
// console.log(form)
// console.log(data)
// for (const key in data) {
// form.append(key, data[key])
// }
// console.log(form)
return request({
url: '/expelled/repair/nextBiz',
method: 'post',
data: form
data: data
})
}

View File

@ -1064,18 +1064,21 @@ export default {
this.formData.remRemark = ''
}
const params = {
...this.detailInfo.repairInfo,
workflowid: this.detailInfo.tsTaskList.workflowid,
bizId: this.bizId,
taskId: this.detailInfo.tsTaskList.tasklistid,
acceptStatus: this.isAccept,
isAgreeRepair: this.isAgreeRepair,
contactName: this.contactName,
repairReason: this.repairReason,
remreasons: this.formData.remreasons,
opinion: this.formData.opinion,
remRemark: this.remRemark,
nextPerformerids: this.formData.nextPerformerids,
nextNodeID: 'handleExptlist'
nextNodeId: 'handleExptlist',
nextPerformerIds: this.formData.nextPerformerids,
nextPerformerNames: this.formData.nextPerformerNames,
repairApproveInfo: this.detailInfo.repairInfo,
opinionQuery: {
acceptStatus: this.isAccept,
isAgreeRepair: this.isAgreeRepair,
contactName: this.contactName,
repairReason: this.repairReason,
remreasons: this.formData.remreasons,
opinion: this.formData.opinion,
remRemark: this.remRemark
}
}
expelledRepairNextBiz(params).then(res => {
this.submitLoading = false