Browse Source

完善案件进程管理

zhanglei
yunuo970428 2 months ago
parent
commit
dc1bd30462
  1. 18
      anrui-riskcenter-ui/src/views/courseofthecase/courseofthecaseAdd.vue

18
anrui-riskcenter-ui/src/views/courseofthecase/courseofthecaseAdd.vue

@ -460,8 +460,22 @@ export default {
req.fetchBySid({ sid: row.sid }).then((res) => { req.fetchBySid({ sid: row.sid }).then((res) => {
if (res.success) { if (res.success) {
this.formobj = res.data this.formobj = res.data
// if (this.formobj.caseStage === '一审') {
this.toFirst() //
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()
}
} }
}) })
}, },

Loading…
Cancel
Save