From dc1bd3046207d2d68e66e37b79f3485e3ee35a9c Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Wed, 2 Apr 2025 10:16:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=A1=88=E4=BB=B6=E8=BF=9B?= =?UTF-8?q?=E7=A8=8B=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../courseofthecase/courseofthecaseAdd.vue | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/anrui-riskcenter-ui/src/views/courseofthecase/courseofthecaseAdd.vue b/anrui-riskcenter-ui/src/views/courseofthecase/courseofthecaseAdd.vue index 51f29eba40..1961784ef3 100644 --- a/anrui-riskcenter-ui/src/views/courseofthecase/courseofthecaseAdd.vue +++ b/anrui-riskcenter-ui/src/views/courseofthecase/courseofthecaseAdd.vue @@ -460,8 +460,22 @@ export default { req.fetchBySid({ sid: row.sid }).then((res) => { if (res.success) { this.formobj = res.data - // 默认获取一审模块 - this.toFirst() + if (this.formobj.caseStage === '一审') { + // 获取一审模块 + this.toFirst() + } else if (this.formobj.caseStage === '二审') { + // 获取二审模块 + this.toTwo() + } else if (this.formobj.caseStage === '再审') { + // 获取再审模块 + this.toThree() + } else if (this.formobj.caseStage === '执行') { + // 获取执行模块 + this.toFour() + } else if (this.formobj.caseStage === '结案') { + // 获取结案模块 + this.toFive() + } } }) },