From cc9281ea9e8d52768418635efd3c813c240f7112 Mon Sep 17 00:00:00 2001
From: liuxi <357439530@qq.com>
Date: Mon, 6 Jan 2025 17:52:51 +0800
Subject: [PATCH] =?UTF-8?q?=E6=A1=88=E4=BB=B6=E8=AF=A6=E6=83=85?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/case-management/detail/index.vue | 66 +++++++++++++++++-----
1 file changed, 53 insertions(+), 13 deletions(-)
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 @@
案件文书
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+ {{ scope.row.sealStatus == null ? '否':'是' }}
+
+
+
+
+
+
+ {{ scope.row.signStatus == 2 ? '是':'否' }}
+
+
+
+
+
+
+ {{ item.signed }}
+ {{ item.unsigned }}
+
+
+
+
+
+
+ {{ scope.row.handleTime | formaDate("yyyy-MM-dd hh:mm:ss") }}
+
+
+
- 查看
+ 查看
@@ -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;
+ }
+ })
+ },
}
}