From bd0d081ace2f7b5b81f9fecf39a76c469206aa54 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 20 Sep 2023 18:40:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A1=88=E4=BB=B6=E4=BF=A1=E6=81=AF=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=8E=A5=E5=8F=A3=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 | 13 +++-- .../components/adjudicaterecordDialog.vue | 36 +++++++------- .../components/choosetrialmethodDaiog.vue | 43 +++++++++++++++- .../components/courtReviewDialog.vue | 49 +++++++++++++++++-- .../components/trialincourtDialog.vue | 40 +++++++-------- vue.config.js | 4 +- 6 files changed, 134 insertions(+), 51 deletions(-) diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index b556112..11517ac 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -366,6 +366,7 @@ export default { // 查询参数 queryParams: { caseNum: undefined, + caseStatusList: [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 16], hearDate: "", caseStatus: null, pageNum: 1, @@ -395,7 +396,7 @@ export default { }; }, created() { - this.getcaseApply(); + this.getcaseApply(this.queryParams); }, methods: { cancel() { @@ -405,9 +406,9 @@ export default { this.openbatch = false; }, /** 查询列表 */ - getcaseApply() { + getcaseApply(val) { this.loading = true; - caseApply(this.queryParams).then((response) => { + caseApply(val).then((response) => { this.dataList = response.rows; // this.dataList.forEach((item) => { // item.caseStatus = item.caseStatus == 0 ? "立案申请" : "待缴费"; @@ -418,13 +419,15 @@ export default { }, /** 搜索按钮操作 */ handleQuery() { + this.queryParams.caseStatusList = [] this.queryParams.pageNum = 1; - this.getcaseApply(); + this.getcaseApply(this.queryParams); }, /** 重置按钮操作 */ resetQuery() { this.resetForm("queryForm"); - this.handleQuery(); + this.queryParams.caseStatusList = [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 16], + this.getcaseApply(this.queryParams); }, // 案件录入 filingApplication() { diff --git a/src/views/caseManagement/components/adjudicaterecordDialog.vue b/src/views/caseManagement/components/adjudicaterecordDialog.vue index 0feff2b..f7582c0 100644 --- a/src/views/caseManagement/components/adjudicaterecordDialog.vue +++ b/src/views/caseManagement/components/adjudicaterecordDialog.vue @@ -171,7 +171,7 @@ @@ -192,11 +192,11 @@ @@ -213,11 +213,11 @@ @@ -234,11 +234,11 @@ @@ -255,11 +255,11 @@ diff --git a/src/views/caseManagement/components/choosetrialmethodDaiog.vue b/src/views/caseManagement/components/choosetrialmethodDaiog.vue index 01d1739..8e38a7d 100644 --- a/src/views/caseManagement/components/choosetrialmethodDaiog.vue +++ b/src/views/caseManagement/components/choosetrialmethodDaiog.vue @@ -16,8 +16,12 @@ @@ -61,4 +65,39 @@ export default { .radiobox { margin-left: 5%; } +::v-deep .el-dialog { + width: 800px; + background: #ffffff; + border-radius: 20px; +} +.endbutton { + width: 124px; + height: 37px; + background: #0072ff; + border-radius: 19px; + span { + width: 32px; + height: 15px; + font-size: 16px; + font-family: Microsoft YaHei; + font-weight: 400; + color: #ffffff; + // line-height: 48px; + } +} +.endbutton1 { + width: 124px; + 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/courtReviewDialog.vue b/src/views/caseManagement/components/courtReviewDialog.vue index 7c9b652..b9cbb98 100644 --- a/src/views/caseManagement/components/courtReviewDialog.vue +++ b/src/views/caseManagement/components/courtReviewDialog.vue @@ -1,12 +1,12 @@