From 5262a8f01d574f30593854cd18428bdec646c8e5 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 21 Sep 2023 16:06:45 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E5=BC=B9=E6=A1=86=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/caseManagement/caseList.vue | 25 ++++++---- .../caseManagement/components/batchDialog.vue | 39 +++++++++++++++- .../components/caseentryDialog.vue | 41 +++++++++++++++-- .../components/formateCourtDialog.vue | 46 +++++++++++++++++-- .../caseManagement/components/payDialog.vue | 23 +++++++++- .../components/trialincourtDialog.vue | 24 ++++++---- .../components/paymentdetailsDialog.vue | 42 +++++++++++++++-- src/views/paymentManagement/paymentList.vue | 17 ++++--- 8 files changed, 220 insertions(+), 37 deletions(-) diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index 245bca2..5c5f875 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -115,7 +115,11 @@ prop="hearDate" :show-overflow-tooltip="true" /> - + + + 开庭审理 - + @@ -54,8 +55,8 @@ @@ -156,4 +157,38 @@ export default { } } } +::v-deep .el-dialog { + width: 800px; + background: #ffffff; + border-radius: 20px; +} +.endbutton { + width: 154px; + height: 37px; + background: #0072ff; + border-radius: 19px; + span { + width: 96px; + height: 15px; + font-size: 16px; + font-family: Microsoft YaHei; + font-weight: 400; + color: #ffffff; + } +} +.endbutton1 { + width: 154px; + height: 37px; + background: #ffffff; + border: 1px solid #d0d0d0; + border-radius: 19px; + span { + width: 31px; + height: 13px; + font-size: 16px; + font-family: Microsoft YaHei; + font-weight: 400; + color: #959595; + } +} \ No newline at end of file diff --git a/src/views/caseManagement/components/caseentryDialog.vue b/src/views/caseManagement/components/caseentryDialog.vue index b2440ec..f1e1262 100644 --- a/src/views/caseManagement/components/caseentryDialog.vue +++ b/src/views/caseManagement/components/caseentryDialog.vue @@ -7,6 +7,7 @@ width="1000px" append-to-body :destroy-on-close= true + center > 新增被申请人主体信息 @@ -786,4 +787,38 @@ export default { height: 700px !important; overflow: auto !important; } +::v-deep .el-dialog { + width: 800px; + background: #ffffff; + border-radius: 20px; +} +.endbutton { + width: 154px; + height: 37px; + background: #0072ff; + border-radius: 19px; + span { + width: 96px; + height: 15px; + font-size: 16px; + font-family: Microsoft YaHei; + font-weight: 400; + color: #ffffff; + } +} +.endbutton1 { + width: 154px; + height: 37px; + background: #ffffff; + border: 1px solid #d0d0d0; + border-radius: 19px; + span { + width: 31px; + height: 13px; + font-size: 16px; + font-family: Microsoft YaHei; + font-weight: 400; + color: #959595; + } +} \ No newline at end of file diff --git a/src/views/caseManagement/components/formateCourtDialog.vue b/src/views/caseManagement/components/formateCourtDialog.vue index 691b2d1..934a8e9 100644 --- a/src/views/caseManagement/components/formateCourtDialog.vue +++ b/src/views/caseManagement/components/formateCourtDialog.vue @@ -4,9 +4,9 @@ @@ -63,9 +63,12 @@ type="primary" @click="submitForm" :disabled="!this.arbitrators.length > 0 && isAgreePendTral == 0" - >确 定确 定 + 取 消 - 取 消 @@ -127,7 +130,7 @@ export default { pendTralCheck(this.paramsdata).then((res) => { this.cancel(); this.$modal.msgSuccess("组庭成功"); - this.$emit("getcaseApply",this.queryParams); + this.$emit("getcaseApply", this.queryParams); }); // } }, @@ -141,4 +144,39 @@ export default { \ No newline at end of file diff --git a/src/views/caseManagement/components/payDialog.vue b/src/views/caseManagement/components/payDialog.vue index caafa71..8bd31d7 100644 --- a/src/views/caseManagement/components/payDialog.vue +++ b/src/views/caseManagement/components/payDialog.vue @@ -7,6 +7,7 @@ width="800px" append-to-body :destroy-on-close="true" + center > {{ @@ -41,7 +42,7 @@
{{ payMain }}
@@ -135,4 +136,24 @@ export default { width: 100%; text-align: center; } +::v-deep .el-dialog { + width: 800px; + background: #ffffff; + border-radius: 20px; +} +.endbutton { + width: 154px; + height: 37px; + background: #ffffff; + border: 1px solid #d0d0d0; + border-radius: 19px; + span { + width: 31px; + height: 13px; + font-size: 16px; + font-family: Microsoft YaHei; + font-weight: 400; + color: #959595; + } +} \ No newline at end of file diff --git a/src/views/caseManagement/components/trialincourtDialog.vue b/src/views/caseManagement/components/trialincourtDialog.vue index 81c5a0e..f69b10b 100644 --- a/src/views/caseManagement/components/trialincourtDialog.vue +++ b/src/views/caseManagement/components/trialincourtDialog.vue @@ -128,7 +128,9 @@ >发起会议 - 提交仲裁结果 + 提交仲裁结果 @@ -541,7 +592,7 @@ export default { "flag", "initpaymentArr", "initpaymentArr1", - "queryParams" + "queryParams", ], data() { return { From 60850f85bf9b680fad42b339fb89087f50bd8b1e Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 21 Sep 2023 19:00:27 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E5=BD=92=E6=A1=A3=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/caseFiling/archiveList.vue | 202 +++++++++++++++++++++++++-- 1 file changed, 191 insertions(+), 11 deletions(-) diff --git a/src/views/caseFiling/archiveList.vue b/src/views/caseFiling/archiveList.vue index 5b8cd17..8de0baa 100644 --- a/src/views/caseFiling/archiveList.vue +++ b/src/views/caseFiling/archiveList.vue @@ -1,15 +1,195 @@ - + - - \ No newline at end of file + + \ No newline at end of file