|
|
@ -179,11 +179,11 @@ |
|
|
|
</el-table> |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-button type="text" size="small" @click="toFirst">一审</el-button> |
|
|
|
<el-button type="text" size="small" @click="toTwo">二审</el-button> |
|
|
|
<el-button type="text" size="small" @click="toThree">再审</el-button> |
|
|
|
<el-button type="text" size="small" @click="toFour">执行</el-button> |
|
|
|
<el-button type="text" size="small" @click="toFive">结案</el-button> |
|
|
|
<el-button :type="isFirstSelect ? 'primary' : 'default'" size="small" @click="toFirst">一审</el-button> |
|
|
|
<el-button :type="isTwoSelect ? 'primary' : 'default'" size="small" @click="toTwo">二审</el-button> |
|
|
|
<el-button :type="isThreeSelect ? 'primary' : 'default'" size="small" @click="toThree">再审</el-button> |
|
|
|
<el-button :type="isFourSelect ? 'primary' : 'default'" size="small" @click="toFour">执行</el-button> |
|
|
|
<el-button :type="isFiveSelect ? 'primary' : 'default'" size="small" @click="toFive">结案</el-button> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<div> |
|
|
@ -220,7 +220,7 @@ import executeInfo from './relation/execute/executeInfo' |
|
|
|
import settlealawsuitInfo from './relation/settlealawsuit/settlealawsuitInfo' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: '', |
|
|
|
name: 'CourseOfTheCaseInfo', |
|
|
|
components: { |
|
|
|
caseactionInfo, |
|
|
|
firstinstanceInfo, |
|
|
@ -242,6 +242,11 @@ export default { |
|
|
|
preserveKey: 3, |
|
|
|
index: 0, |
|
|
|
activeName: 0, |
|
|
|
isFirstSelect: false, // 一审是否选中 |
|
|
|
isTwoSelect: false, // 二审是否选中 |
|
|
|
isThreeSelect: false, // 再审是否选中 |
|
|
|
isFourSelect: false, // 执行是否选中 |
|
|
|
isFiveSelect: false, // 结案是否选中 |
|
|
|
formobj: { |
|
|
|
sid: '', |
|
|
|
useOrgName: '', |
|
|
@ -289,7 +294,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() |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
@ -306,26 +326,51 @@ export default { |
|
|
|
}, |
|
|
|
// 一审模块 |
|
|
|
toFirst() { |
|
|
|
this.isFirstSelect = true |
|
|
|
this.isTwoSelect = false |
|
|
|
this.isThreeSelect = false |
|
|
|
this.isFourSelect = false |
|
|
|
this.isFiveSelect = false |
|
|
|
this.activeName = 1 |
|
|
|
this.$refs['divFirst'].showInfo(this.formobj.sid) |
|
|
|
this.$refs['divFirst'].showEdit(this.formobj.sid) |
|
|
|
}, |
|
|
|
// 二审模块 |
|
|
|
toTwo() { |
|
|
|
this.isFirstSelect = false |
|
|
|
this.isTwoSelect = true |
|
|
|
this.isThreeSelect = false |
|
|
|
this.isFourSelect = false |
|
|
|
this.isFiveSelect = false |
|
|
|
this.activeName = 2 |
|
|
|
this.$refs['divSecond'].showInfo(this.formobj.sid) |
|
|
|
this.$refs['divSecond'].showEdit(this.formobj.sid) |
|
|
|
}, |
|
|
|
// 再审模块 |
|
|
|
toThree() { |
|
|
|
this.isFirstSelect = false |
|
|
|
this.isTwoSelect = false |
|
|
|
this.isThreeSelect = true |
|
|
|
this.isFourSelect = false |
|
|
|
this.isFiveSelect = false |
|
|
|
this.activeName = 3 |
|
|
|
this.$refs['divExamineagain'].showInfo(this.formobj.sid) |
|
|
|
this.$refs['divExamineagain'].showEdit(this.formobj.sid) |
|
|
|
}, |
|
|
|
toFour() { |
|
|
|
this.isFirstSelect = false |
|
|
|
this.isTwoSelect = false |
|
|
|
this.isThreeSelect = false |
|
|
|
this.isFourSelect = true |
|
|
|
this.isFiveSelect = false |
|
|
|
this.activeName = 4 |
|
|
|
this.$refs['divExecute'].showInfo(this.formobj.sid) |
|
|
|
this.$refs['divExecute'].showEdit(this.formobj.sid) |
|
|
|
}, |
|
|
|
toFive() { |
|
|
|
this.isFirstSelect = false |
|
|
|
this.isTwoSelect = false |
|
|
|
this.isThreeSelect = false |
|
|
|
this.isFourSelect = false |
|
|
|
this.isFiveSelect = true |
|
|
|
this.activeName = 5 |
|
|
|
this.$refs['divSettlealawsuit'].showInfo(this.formobj.sid) |
|
|
|
this.$refs['divSettlealawsuit'].showEdit(this.formobj.sid) |
|
|
|
}, |
|
|
|
lookSuSong() { |
|
|
|
if (this.formobj.suSongSid !== '') { |
|
|
@ -339,7 +384,48 @@ export default { |
|
|
|
this.viewState = 1 |
|
|
|
}, |
|
|
|
handleReturn() { |
|
|
|
this.formobj = {} |
|
|
|
this.formobj = { |
|
|
|
sid: '', |
|
|
|
useOrgName: '', |
|
|
|
createDept: '', |
|
|
|
createByName: '', |
|
|
|
createDate: '', |
|
|
|
companyHead: '', |
|
|
|
companyHeadSid: '', |
|
|
|
legalHead: '', |
|
|
|
legalHeadSid: '', |
|
|
|
caseType: '', |
|
|
|
caseNo: '', |
|
|
|
caseTypeKey: '', |
|
|
|
loanContractNo: '', |
|
|
|
loanName: '', |
|
|
|
idNumber: '', |
|
|
|
borrowerAddress: '', |
|
|
|
customerName: '', |
|
|
|
bankName: '', |
|
|
|
bankContractNo: '', |
|
|
|
amountAll: '', |
|
|
|
full: '', |
|
|
|
sueMoney: '', |
|
|
|
sueShows: '', |
|
|
|
sueReason: '', |
|
|
|
suSongSid: '', |
|
|
|
caseStage: '', |
|
|
|
useDays: '', |
|
|
|
enterDate: '', |
|
|
|
caseTache: '', |
|
|
|
sueAging: '', |
|
|
|
veh: [], |
|
|
|
fees: [], |
|
|
|
guarantor: [], |
|
|
|
preserve: [] |
|
|
|
} |
|
|
|
this.activeName = 0 |
|
|
|
this.isFirstSelect = false |
|
|
|
this.isTwoSelect = false |
|
|
|
this.isThreeSelect = false |
|
|
|
this.isFourSelect = false |
|
|
|
this.isFiveSelect = false |
|
|
|
this.$emit('doback') |
|
|
|
} |
|
|
|
} |
|
|
|