直转增加任务类型
This commit is contained in:
parent
5ea3c5211c
commit
f90bc471ee
|
|
@ -357,6 +357,8 @@ export default {
|
||||||
this.auditingParams.nextNodeId = this.auditingList[currentIndex + 1].id
|
this.auditingParams.nextNodeId = this.auditingList[currentIndex + 1].id
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.auditingParams.taskTypeId = 16
|
||||||
|
|
||||||
const res = await submitAuditingApi(this.auditingParams)
|
const res = await submitAuditingApi(this.auditingParams)
|
||||||
|
|
||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
|
|
@ -366,6 +368,8 @@ export default {
|
||||||
// this.$tab.closeOpenPage(obj)
|
// this.$tab.closeOpenPage(obj)
|
||||||
this.$tab.closePage()
|
this.$tab.closePage()
|
||||||
}, 500)
|
}, 500)
|
||||||
|
} else {
|
||||||
|
this.$modal.msgError(res.message);
|
||||||
}
|
}
|
||||||
// const params = {
|
// const params = {
|
||||||
// flowId: this.flowId,
|
// flowId: this.flowId,
|
||||||
|
|
@ -431,7 +435,8 @@ export default {
|
||||||
},
|
},
|
||||||
// 获取数据详情 和 审核记录详情
|
// 获取数据详情 和 审核记录详情
|
||||||
async getLeaseTaskDetailFun(taskId) {
|
async getLeaseTaskDetailFun(taskId) {
|
||||||
const result = await getAuditingDetailsApi({ taskId })
|
const taskType = 16
|
||||||
|
const result = await getAuditingDetailsApi({ taskId, taskType })
|
||||||
console.log('result', result)
|
console.log('result', result)
|
||||||
this.auditingList = result.rows
|
this.auditingList = result.rows
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue