领料审核
This commit is contained in:
parent
7687d84d57
commit
0a08a711c1
|
|
@ -147,7 +147,11 @@ export default {
|
||||||
taskId: '', // 外层列表的taskId
|
taskId: '', // 外层列表的taskId
|
||||||
isAccept: '', // 审批结果 1. 通过 2. 驳回
|
isAccept: '', // 审批结果 1. 通过 2. 驳回
|
||||||
recordId: '',
|
recordId: '',
|
||||||
nextNodeId: '' // 下个流程节点ID
|
nextNodeId: '', // 下个流程节点ID
|
||||||
|
leaseId: '', // 外键id
|
||||||
|
taskCode: '', // 任务编码
|
||||||
|
unitName: '', // 单位名称
|
||||||
|
projectName: '', // 项目名称
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -201,6 +205,14 @@ export default {
|
||||||
|
|
||||||
this.auditingParams.isAccept = type;
|
this.auditingParams.isAccept = type;
|
||||||
|
|
||||||
|
this.auditingParams.leaseId = this.detailsInfo.id
|
||||||
|
|
||||||
|
this.auditingParams.taskCode = this.detailsInfo.code
|
||||||
|
|
||||||
|
this.auditingParams.unitName = this.detailsInfo.leaseUnit
|
||||||
|
|
||||||
|
this.auditingParams.projectName = this.detailsInfo.leaseProject
|
||||||
|
|
||||||
// 找出当前节点在审核列表中的索引
|
// 找出当前节点在审核列表中的索引
|
||||||
const currentIndex = this.auditingList.findIndex(e => e.id === id);
|
const currentIndex = this.auditingList.findIndex(e => e.id === id);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue