From 0a08a711c15796a26731b301c9ba6d19d7b2f5bd Mon Sep 17 00:00:00 2001 From: hongchao <3228015117@qq.com> Date: Tue, 24 Jun 2025 16:27:37 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=86=E6=96=99=E5=AE=A1=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../receive-apply/business-details.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/views/business-examine/receive-apply/business-details.vue b/src/views/business-examine/receive-apply/business-details.vue index e2639a7f..9329e2aa 100644 --- a/src/views/business-examine/receive-apply/business-details.vue +++ b/src/views/business-examine/receive-apply/business-details.vue @@ -147,7 +147,11 @@ export default { taskId: '', // 外层列表的taskId isAccept: '', // 审批结果 1. 通过 2. 驳回 recordId: '', - nextNodeId: '' // 下个流程节点ID + nextNodeId: '', // 下个流程节点ID + leaseId: '', // 外键id + taskCode: '', // 任务编码 + unitName: '', // 单位名称 + projectName: '', // 项目名称 } } }, @@ -201,6 +205,14 @@ export default { 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);