From 15e12225740bdc06de32d976c3f87793726374c6 Mon Sep 17 00:00:00 2001 From: gyj Date: Fri, 8 Dec 2023 23:09:11 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=B3=E8=AF=B7=E4=BA=BA=E6=9C=BA=E6=9E=84?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=E7=94=B3=E8=AF=B7=E4=BA=BA=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E4=BC=98=E5=8C=96,=E7=BC=B4=E8=B4=B9=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E7=9A=84=E4=BC=98=E5=8C=96,=E8=AF=A6=E6=83=85=E9=A1=B5?= =?UTF-8?q?=E5=92=8C=E4=BF=AE=E6=94=B9=E9=A1=B5=E9=9D=A2=E5=8A=A0tab?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=EF=BC=8C=E5=B1=95=E7=A4=BA=E6=8A=93=E5=8F=96?= =?UTF-8?q?=E5=86=85=E5=AE=B9=E9=A1=B5=E9=9D=A2=E7=9A=84=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/caseManagement/caseList.vue | 11 ++- .../components/caseentryDialog.vue | 73 ++++++++++++++++--- .../caseManagement/components/payDialog.vue | 5 +- 3 files changed, 75 insertions(+), 14 deletions(-) diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index 02fbd4f..240d41d 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -4,7 +4,7 @@ - + @@ -179,7 +179,7 @@ + :initpaymentArr="initpaymentArr" :initpaymentArr1="initpaymentArr1" :columnValues="columnValues"> @@ -312,6 +312,8 @@ export default { isapply: "申请人:", // 表格数据 dataList: [], + // 抓取数据 + columnValues:[], // 查询参数 queryParams: { caseNum: undefined, @@ -670,6 +672,7 @@ export default { res.data.caseStatusName = "待缴费"; } this.form = res.data; + console.log(this.form) this.payForm.feePayable = res.data.feePayable; this.payForm.caseId = res.data.id; }); @@ -806,6 +809,8 @@ export default { this.initpaymentArr1.push(item); } }); + this.columnValues = res.data.columnValues; + console.log(res.data.columnValues) this.caseAttachList = res.data.caseAttachList; // console.log(this.caseAttachList,"caseAttachList") this.form.requestRule = res.data.requestRule; diff --git a/src/views/caseManagement/components/caseentryDialog.vue b/src/views/caseManagement/components/caseentryDialog.vue index f4101ab..1332516 100644 --- a/src/views/caseManagement/components/caseentryDialog.vue +++ b/src/views/caseManagement/components/caseentryDialog.vue @@ -2,7 +2,13 @@
- + + + + + +
+
@@ -583,19 +589,47 @@ @click="generateForm1()" >新增被申请人主体信息 --> -
-
-
-
仲裁申请书:
+
+
+
+
仲裁申请书:
+
+
+ {{item.annexName}}
-
- {{item.annexName}}
+ +
- @@ -615,9 +649,11 @@ export default { "initpaymentArr1", "queryParams", "caseAttachList", + "columnValues" ], data() { return { + activeName: 'first', fileURL: window.location.origin + "/API", formData: this.form, filedata: { @@ -664,6 +700,10 @@ export default { }, ], }, //被申请人主体信息 + // 抓取内容 + formGrab:{ + list:[] + }, // 表单校验 rules: { // caseNum: [ @@ -772,6 +812,8 @@ export default { watch: { initpaymentArr: { handler(val) { + this.activeName = "first" + this.formGrab.list = this.columnValues  this.caseAttachListArr = [] if (val) { this.applicateArr = []; @@ -781,6 +823,7 @@ export default { if (this.flag == "1" || this.flag == "0") { this.form2.paymentArr = this.initpaymentArr; this.form3.paymentArr1 = this.initpaymentArr1; + console.log(this.caseAttachList) this.caseAttachList.forEach((item) => { if (item.annexType == 2) { this.applicateArr.push({ @@ -1021,6 +1064,12 @@ export default { } }); }, + // 提交抓取内容修改 + submitFormGrab(){ + this.$refs['formGrabRef'].validate((valid) => { + console.log(this.formGrab.list,valid) + }); + }, // 详情显示,展示申请人案件文件 toFile(item, index) { window.open( @@ -1035,6 +1084,10 @@ export default { "_black" ); }, + // tabs页 + handleClick(tab, event) { + // console.log(tab, event); + } }, }; diff --git a/src/views/caseManagement/components/payDialog.vue b/src/views/caseManagement/components/payDialog.vue index 19a718b..a41abbc 100644 --- a/src/views/caseManagement/components/payDialog.vue +++ b/src/views/caseManagement/components/payDialog.vue @@ -23,8 +23,11 @@ {{ form.caseStatusName }} - {{ + + {{ + form.facts }}
-- 2.54.0