From 2bb3595196c744ccb22ac77a757a1703f5255bd2 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 21 Sep 2023 13:35:51 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AB=8B=E6=A1=88=E5=AE=A1=E6=9F=A5=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E8=B0=83=E6=95=B4=E5=8F=8A=E6=8E=A5=E5=8F=A3=E8=B0=83?= =?UTF-8?q?=E8=AF=95?= 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 | 59 +++++----- .../components/choosetrialmethodDaiog.vue | 6 +- .../components/filingreviewDialog.vue | 102 ++++++++++++++++++ 4 files changed, 141 insertions(+), 34 deletions(-) create mode 100644 src/views/caseManagement/components/filingreviewDialog.vue diff --git a/src/api/caseManagement/caseManagement.js b/src/api/caseManagement/caseManagement.js index 91cc84a..33c2423 100644 --- a/src/api/caseManagement/caseManagement.js +++ b/src/api/caseManagement/caseManagement.js @@ -25,3 +25,11 @@ export function pendTralSure(data) { data: data, }); } +// 立案审查 +export function submitCaseApplicationCheck(data) { + return request({ + url: "/caseApplication/submitCaseApplicationCheck", + method: "post", + data: data, + }); +} diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index ebdd200..2e6c71d 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -101,9 +101,9 @@ prop="caseSubjectAmount" /> @@ -168,7 +168,7 @@ 选择开庭方式审核仲裁方式 + + { this.dataList = response.rows; + this.dataList.forEach((item) => { + item.arbitratMethod = item.arbitratMethod == 1 ? "视频仲裁" : "书面仲载"; + }); this.total = response.total; this.loading = false; }); @@ -483,19 +498,6 @@ export default { batchApplication() { this.openbatch = true; }, - // 列表提交立案 - onsubmitRow(row) { - this.$modal - .confirm("是否提交立案?") - .then(function () { - return submitCaseApply({ id: row.id }); - }) - .then(() => { - this.getcaseApply(this.queryParams); - this.$modal.msgSuccess("立案成功"); - }) - .catch(() => {}); - }, // 详情 detailRow(row) { this.flag = "0"; @@ -528,16 +530,11 @@ export default { // 立案审查 filingreviewRow(row) { console.log(row, "立案审查"); - // this.$modal - // .confirm("确定提交案件数据吗?") - // .then(function () { - // return submitCaseApply({ id: row.id }); - // }) - // .then(() => { - // this.getcaseApply(this.queryParams); - // this.$modal.msgSuccess("立案审查成功"); - // }) - // .catch(() => {}); + this.showfilingreview = true; + this.filingreviewdata = row; + }, + cancelFilingreview() { + this.showfilingreview = false; }, // 取消缴费 paycancelRow(row) { @@ -571,22 +568,22 @@ export default { }, // 组庭确认 courtconfirmationRow(row) { - console.log(row, "组庭确认"); + // console.log(row, "组庭确认"); this.showcourtReview = true; this.form = row; }, // 组庭审核 courtreviewRow(row) { - console.log(row, "组庭审核"); + // console.log(row, "组庭审核"); this.formateCourtData = row; this.showformateCourt = true; }, cancelcourtReview() { this.showcourtReview = false; }, - // 选择开庭方式 + // 选择开庭方式改为审核仲裁方式 choosetrialmethodRow(row) { - console.log(row, "选择开庭方式"); + // console.log(row, "选择开庭方式"); this.choosetrialmethodata = row; this.showchoosetrialmethod = true; }, diff --git a/src/views/caseManagement/components/choosetrialmethodDaiog.vue b/src/views/caseManagement/components/choosetrialmethodDaiog.vue index d3c3c04..b2d9d7a 100644 --- a/src/views/caseManagement/components/choosetrialmethodDaiog.vue +++ b/src/views/caseManagement/components/choosetrialmethodDaiog.vue @@ -2,7 +2,7 @@
- 书面审理 - 开庭审理 + 拒绝开庭方式 + 同意开庭方式
diff --git a/src/views/caseManagement/components/filingreviewDialog.vue b/src/views/caseManagement/components/filingreviewDialog.vue new file mode 100644 index 0000000..9c13d73 --- /dev/null +++ b/src/views/caseManagement/components/filingreviewDialog.vue @@ -0,0 +1,102 @@ + + + + + \ No newline at end of file -- 2.54.0