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

Merge branch 'dev' of http://git.xayunmei.com/SH-Arbitrate/Mediation-Frontend into gyj

gyj 2 лет назад
Родитель
Сommit
ed1165a6ac

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

@@ -69,7 +69,7 @@
69 69
                     <el-button size="mini" @click="caseLog(scope.row)" type="text"
70 70
                         icon="el-icon-edit-outline">案件日志</el-button>
71 71
                     <el-button size="mini" @click="viewpaymentformRow(scope.row)" type="text"
72
-                        icon="el-icon-edit">查看缴费单</el-button>
72
+                        icon="el-icon-edit" v-if="scope.row.caseFlowId > 2">查看缴费单</el-button>
73 73
                     <el-button size="mini" type="text" icon="el-icon-edit" @click="evidenceUpload(scope.row)"
74 74
                         v-hasPermi="['caseManagement:list:evidenceEdit']" v-if="scope.row.caseFlowId <= 9">上传证据</el-button>
75 75
                     <el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseFlowId == 15 ||
@@ -116,7 +116,7 @@
116 116
         </paymentdetailsDialog>
117 117
         <!-- 案件受理 -->
118 118
         <caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
119
-            :caseAcceptanceData="caseAcceptanceData" @getList="getList"></caseAcceptance>
119
+            :caseAcceptanceData="caseAcceptanceData" @getList="getList" :queryParams="queryParams"></caseAcceptance>
120 120
         <!-- 被申请人缴费 -->
121 121
         <respondentPay :openResPay="openResPay" :resPayTitle="resPayTitle" :formResPayDetail="formResPayDetail"
122 122
             :resPayId="resPayId" :resPayForm="resPayForm" :queryParams="queryParams" @getList="getList"

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

@@ -545,14 +545,6 @@ export default {
545 545
         this.getUserInfoFn();
546 546
         this.modelFlag = false;
547 547
         this.buttonFlag = true;
548
-        this.formData = {
549
-          affiliate: {
550
-            organizeFlag: 0,
551
-            respondentSex: 0,
552
-          },
553
-          columnValueList: [],
554
-          caseAttachList: [],
555
-        };
556 548
       } else if (val == 3) {
557 549
         this.title = "修改案件";
558 550
         this.modelFlag = true;
@@ -565,6 +557,20 @@ export default {
565 557
     },
566 558
     addVisable(val) {
567 559
       if (val) {
560
+        if(this.addModifyData == 1){
561
+          this.formData = {
562
+          affiliate: {
563
+            organizeFlag: 0,
564
+            respondentSex: 0,
565
+          },
566
+          columnValueList: [],
567
+          caseAttachList: [],
568
+        };
569
+        this.$set(this.formData.affiliate, "applicationName", this.getUserInfoList.nickName);
570
+        this.$set(this.formData.affiliate, "code", this.getUserInfoList.idCard);
571
+        this.$set(this.formData.affiliate, "applicationEmail", this.getUserInfoList.email);
572
+        this.$set(this.formData.affiliate, "applicationPhone", this.getUserInfoList.phonenumber);
573
+        }
568 574
         this.activeName = "first";
569 575
         this.showmediate = false;
570 576
         this.getTemplateFn();
@@ -605,7 +611,7 @@ export default {
605 611
           if (item.annexType == 2) {
606 612
             this.applicantEvidence.push(item);
607 613
           } else if (item.annexType == 6) {
608
-            this.respondentEvidence.push(item);
614
+            // this.respondentEvidence.push(item);
609 615
           } else if (item.annexType == 7) {
610 616
             this.showmediate = true
611 617
           }
@@ -765,8 +771,8 @@ export default {
765 771
           // this.$set(this.formData.affiliate, 'applicantHome', this.formZipData.affiliate.applicantHome);
766 772
           // this.$set(this.formData.affiliate, 'applicantAddress', this.formZipData.affiliate.applicantAddress);
767 773
           // this.$set(this.formData.affiliate, 'contactTelphoneAgent', this.formZipData.affiliate.contactTelphoneAgent);
768
-          this.$set(this.formData.affiliate, 'nameAgent', this.formZipData.affiliate.nameAgent);
769
-          this.$set(this.formData.affiliate, 'agentEmail', this.formZipData.affiliate.agentEmail);
774
+          // this.$set(this.formData.affiliate, 'nameAgent', this.formZipData.affiliate.nameAgent);
775
+          // this.$set(this.formData.affiliate, 'agentEmail', this.formZipData.affiliate.agentEmail);
770 776
           this.$set(this.formData.affiliate, 'respondentName', this.formZipData.affiliate.respondentName);
771 777
           this.$set(this.formData.affiliate, 'respondentPhone', this.formZipData.affiliate.respondentPhone);
772 778
           this.$set(this.formData.affiliate, 'respondentIdentityNum', this.formZipData.affiliate.respondentIdentityNum);

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

@@ -28,12 +28,12 @@
28 28
           </el-radio-group>
29 29
         </el-form-item> -->
30 30
         <el-form-item v-if="courtReviewform.agreeFlag == 0" label="拒绝理由:" prop="rejectReason" :rules="[
31
-          {
32
-            required: true,
33
-            message: '拒绝理由不能为空',
34
-            trigger: 'blur',
35
-          },
36
-        ]">
31
+      {
32
+        required: true,
33
+        message: '拒绝理由不能为空',
34
+        trigger: 'blur',
35
+      },
36
+    ]">
37 37
           <el-input v-model="courtReviewform.rejectReason" type="textarea" :rows="8" />
38 38
         </el-form-item>
39 39
       </el-form>
@@ -63,7 +63,13 @@ export default {
63 63
   watch: {
64 64
     showAcceptance(val) {
65 65
       if (val) {
66
-        console.log(this.caseAcceptanceData)
66
+        console.log(this.caseAcceptanceData);
67
+        this.courtReviewform = {
68
+          mediationMethod: 2,
69
+          paperFlag: 0,
70
+          arbitrateConfirm: 0,
71
+          agreeFlag: 1
72
+        }
67 73
       }
68 74
     },
69 75
   },

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

@@ -176,6 +176,7 @@ export default {
176 176
   },
177 177
   watch: {
178 178
     mediationVisable(val) {
179
+      this.mediaResult = 1;
179 180
       this.recordArr = [];
180 181
       this.recordArrMediate = [];
181 182
       if (this.mediationData.mediationMethod == "1") {
@@ -194,7 +195,6 @@ export default {
194 195
     },
195 196
     recordArrMediate(val){
196 197
       if(val.length >= 1){
197
-        console.log('监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听监听');
198 198
         this.selectRoido = false;
199 199
       }
200 200
     }