From e671e10f42c5125c343518ecf07d946c66d405e8 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 19 Sep 2023 20:51:20 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E5=BA=AD=E7=A1=AE=E8=AE=A4=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E8=81=94=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/caseManagement/caseManagement.js | 8 + src/views/caseManagement/caseList.vue | 14 +- .../components/courtReviewDialog.vue | 47 ++++- .../components/trialincourtDialog.vue | 169 +++++++++++++++++- 4 files changed, 219 insertions(+), 19 deletions(-) diff --git a/src/api/caseManagement/caseManagement.js b/src/api/caseManagement/caseManagement.js index dec802d..0fabfab 100644 --- a/src/api/caseManagement/caseManagement.js +++ b/src/api/caseManagement/caseManagement.js @@ -18,3 +18,11 @@ export function writtenHear(data, id) { data: id, }); } +// 组庭确认 +export function pendTralSure(data) { + return request({ + url: "/caseApplication/pendTralSure", + method: "post", + data: data, + }); +} diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index 9d5dc46..df7fb89 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -283,7 +283,9 @@ @@ -505,13 +509,7 @@ export default { courtconfirmationRow(row) { console.log(row, "组庭确认"); this.showcourtReview = true; - // this.$modal - // .confirm("确定进行组庭吗?") - // .then(function () {}) - // .then(() => { - // this.$modal.msgSuccess("组庭成功"); - // }) - // .catch((err) => {}); + this.form = row; }, // 组庭审核 courtreviewRow(row) { @@ -546,6 +544,8 @@ export default { trialcourtRow(row) { console.log(row, "开庭审理"); this.showtrialincourt = true; + this.form = row; + this.getInfo(row) }, canceltrialincourt() { this.showtrialincourt = false; diff --git a/src/views/caseManagement/components/courtReviewDialog.vue b/src/views/caseManagement/components/courtReviewDialog.vue index acd9318..7c9b652 100644 --- a/src/views/caseManagement/components/courtReviewDialog.vue +++ b/src/views/caseManagement/components/courtReviewDialog.vue @@ -8,10 +8,24 @@ @close="cancel" :destroy-on-close="true" > - - + +
- +
@@ -25,17 +39,36 @@ \ No newline at end of file diff --git a/src/views/caseManagement/components/trialincourtDialog.vue b/src/views/caseManagement/components/trialincourtDialog.vue index 53c7ce5..7fb2136 100644 --- a/src/views/caseManagement/components/trialincourtDialog.vue +++ b/src/views/caseManagement/components/trialincourtDialog.vue @@ -3,14 +3,137 @@ - 开庭审理弹框 + +

案件信息:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ 发起会议 + 提交仲裁结果
@@ -18,10 +141,11 @@ \ No newline at end of file -- 2.54.0