|
|
@ -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() |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|