diff --git a/src/pages/case-management/detail/index.vue b/src/pages/case-management/detail/index.vue index 9fa0ab6..f8fc252 100644 --- a/src/pages/case-management/detail/index.vue +++ b/src/pages/case-management/detail/index.vue @@ -235,12 +235,11 @@
备注
孟利于2024-12-04 10:04:04备注 - +
质检评语
- 孟利于2024-12-04 10:04:04评语 - +
@@ -312,19 +311,43 @@
案件文书
- + - - - - - - - + + + + + + + + + + + + + + + + @@ -432,7 +455,9 @@ export default { ProofStatistics: { total: 0, payback: 0 - } + }, + // 文书列表 + OfficeList:[], } }, computed: { @@ -482,6 +507,9 @@ export default { this.fileDialog = {showfile: scope.row, filelist: filelist} } }, + handleCaseOfficeShow(scope) { + this.fileDialog = {showfile: {url: scope.row.fullUrl}, filelist: []} + }, debtorEntityCardNo(datalist, len) { let datacardno = '' let dataphone = '' @@ -519,6 +547,7 @@ export default { this.getLitigantByCaseId() this.getplanlist() this.getProofList() + this.getWritCaseList() }, // 获取证据材料 getFileCaseList() { @@ -585,6 +614,17 @@ export default { } } }, + // 文书列表数据 + getWritCaseList() { + let dataJson = { + id: this.caseId + } + api.getCaseGenerateList(dataJson).then(res => { + if (!res.code) { + this.OfficeList = res; + } + }) + }, } }