除名修复接口对接调整
This commit is contained in:
parent
016c017a8d
commit
47aecaad09
|
|
@ -83,17 +83,17 @@ export function expelledRepairStartBiz(data) {
|
||||||
|
|
||||||
// 除名修复业务审批流程
|
// 除名修复业务审批流程
|
||||||
export function expelledRepairNextBiz(data) {
|
export function expelledRepairNextBiz(data) {
|
||||||
const form = new FormData()
|
// const form = new FormData()
|
||||||
console.log(form)
|
// console.log(form)
|
||||||
console.log(data)
|
// console.log(data)
|
||||||
for (const key in data) {
|
// for (const key in data) {
|
||||||
form.append(key, data[key])
|
// form.append(key, data[key])
|
||||||
}
|
// }
|
||||||
console.log(form)
|
// console.log(form)
|
||||||
return request({
|
return request({
|
||||||
url: '/expelled/repair/nextBiz',
|
url: '/expelled/repair/nextBiz',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: form
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1064,18 +1064,21 @@ export default {
|
||||||
this.formData.remRemark = ''
|
this.formData.remRemark = ''
|
||||||
}
|
}
|
||||||
const params = {
|
const params = {
|
||||||
...this.detailInfo.repairInfo,
|
bizId: this.bizId,
|
||||||
workflowid: this.detailInfo.tsTaskList.workflowid,
|
|
||||||
taskId: this.detailInfo.tsTaskList.tasklistid,
|
taskId: this.detailInfo.tsTaskList.tasklistid,
|
||||||
acceptStatus: this.isAccept,
|
nextNodeId: 'handleExptlist',
|
||||||
isAgreeRepair: this.isAgreeRepair,
|
nextPerformerIds: this.formData.nextPerformerids,
|
||||||
contactName: this.contactName,
|
nextPerformerNames: this.formData.nextPerformerNames,
|
||||||
repairReason: this.repairReason,
|
repairApproveInfo: this.detailInfo.repairInfo,
|
||||||
remreasons: this.formData.remreasons,
|
opinionQuery: {
|
||||||
opinion: this.formData.opinion,
|
acceptStatus: this.isAccept,
|
||||||
remRemark: this.remRemark,
|
isAgreeRepair: this.isAgreeRepair,
|
||||||
nextPerformerids: this.formData.nextPerformerids,
|
contactName: this.contactName,
|
||||||
nextNodeID: 'handleExptlist'
|
repairReason: this.repairReason,
|
||||||
|
remreasons: this.formData.remreasons,
|
||||||
|
opinion: this.formData.opinion,
|
||||||
|
remRemark: this.remRemark
|
||||||
|
}
|
||||||
}
|
}
|
||||||
expelledRepairNextBiz(params).then(res => {
|
expelledRepairNextBiz(params).then(res => {
|
||||||
this.submitLoading = false
|
this.submitLoading = false
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue