Просмотр исходного кода

Merge branch 'hhl' of SH-Arbitrate/Arbitrate-Frontend into dev

hhlxayunmei 2 лет назад
Родитель
Сommit
d6f08794a7

+ 8
- 0
src/api/caseManagement/caseManagement.js Просмотреть файл

@@ -49,3 +49,11 @@ export function evidenceUpload(data) {
49 49
     data: data,
50 50
   });
51 51
 }
52
+// 案件日志列表查询
53
+export function caseLogRecordList(data) {
54
+  return request({
55
+    url: "/caseLogRecord/list",
56
+    method: "get",
57
+    params: data,
58
+  });
59
+}

+ 7
- 2
src/views/caseManagement/caseList.vue Просмотреть файл

@@ -146,7 +146,7 @@
146 146
           <el-button
147 147
             size="mini"
148 148
             type="text"
149
-            icon="el-icon-zoom-in"
149
+            icon="el-icon-notebook-2"
150 150
             @click="caselogRow(scope.row)"
151 151
             v-hasPermi="['monitor:online:forceLogout']"
152 152
             >案件日志</el-button
@@ -355,6 +355,7 @@
355 355
       :payTitle="payTitle"
356 356
       :form="form"
357 357
       :payForm="payForm"
358
+      :queryParams="queryParams"
358 359
       @getcaseApply="getcaseApply"
359 360
       @paycancelRow="paycancelRow"
360 361
     ></payDialog>
@@ -386,7 +387,7 @@ import {
386 387
   submitCaseApply,
387 388
   selectCaseApply,
388 389
 } from "@/api/caseAccess/caseEntry";
389
-import { document } from "@/api/caseManagement/caseManagement";
390
+import { document, caseLogRecordList } from "@/api/caseManagement/caseManagement";
390 391
 
391 392
 export default {
392 393
   name: "caseList",
@@ -540,6 +541,10 @@ export default {
540 541
     // 案件日志
541 542
     caselogRow(row) {
542 543
       this.showcaseLog = true;
544
+    },
545
+    // 查询案件日志信息
546
+    caseLogRecordListFn() {
547
+
543 548
     },
544 549
     // 关闭案件日志
545 550
     cancelcaseLog() {

+ 8
- 8
src/views/caseManagement/components/caseentryDialog.vue Просмотреть файл

@@ -696,14 +696,14 @@ export default {
696 696
       }, //被申请人主体信息
697 697
       // 表单校验
698 698
       rules: {
699
-        caseNum: [
700
-          {
701
-            required: true,
702
-            message: "案件编号不能为空",
703
-            trigger: "blur",
704
-          },
705
-          { max: 20, message: "长度应小于20个字符", trigger: "blur" },
706
-        ],
699
+        // caseNum: [
700
+        //   {
701
+        //     required: true,
702
+        //     message: "案件编号不能为空",
703
+        //     trigger: "blur",
704
+        //   },
705
+        //   { max: 20, message: "长度应小于20个字符", trigger: "blur" },
706
+        // ],
707 707
         caseSubjectAmount: [
708 708
           {
709 709
             required: true,

+ 1
- 1
src/views/caseManagement/components/payDialog.vue Просмотреть файл

@@ -47,7 +47,7 @@
47 47
 import { casePay, selectCaseApplicationConfirm } from "@/api/pay/pay";
48 48
 import QRCode from "qrcodejs2";
49 49
 export default {
50
-  props: ["openPay", "payTitle", "form", "payForm"],
50
+  props: ["openPay", "payTitle", "form", "payForm", "queryParams"],
51 51
   data() {
52 52
     return {
53 53
       // key: value

+ 1
- 1
src/views/caseManagement/components/trialincourtDialog.vue Просмотреть файл

@@ -300,7 +300,7 @@ export default {
300 300
     // 打开会议
301 301
     openmeeting() {
302 302
       // window.open('https://txroom.xayunmei.com');
303
-      window.open(`https://txroom.xayunmei.com/#/home?name=${this.user}`);
303
+      window.open(`https://txroom.xayunmei.com/#/home?name=${this.user}&id=${this.formData.id}`);
304 304
     },
305 305
     // 提交仲裁结果
306 306
     openArbitrationresults() {