Selaa lähdekoodia

'调解书显示问题修复'

hhl123456789 2 vuotta sitten
vanhempi
commit
e42edc55d4
1 muutettua tiedostoa jossa 6 lisäystä ja 2 poistoa
  1. 6
    2
      src/views/caseManagement/components/addCase.vue

+ 6
- 2
src/views/caseManagement/components/addCase.vue Näytä tiedosto

106
               </div>
106
               </div>
107
             </el-form-item>
107
             </el-form-item>
108
           </el-col>
108
           </el-col>
109
-          <el-col :span="24" v-if="modelFlag">
109
+          <el-col :span="24" v-if="modelFlag && showmediate">
110
             <el-form-item label="调解书:">
110
             <el-form-item label="调解书:">
111
               <div v-for="(item, index) in formData.caseAttachList" :key="index" v-if="item.annexType == 7">
111
               <div v-for="(item, index) in formData.caseAttachList" :key="index" v-if="item.annexType == 7">
112
                 <div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
112
                 <div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
500
       respondentEvidence: [], //被申请人证据
500
       respondentEvidence: [], //被申请人证据
501
       buttonFlag: true,
501
       buttonFlag: true,
502
       getUserInfoList: {},
502
       getUserInfoList: {},
503
-      applicationFlag: null
503
+      applicationFlag: null,
504
+      showmediate: false
504
     };
505
     };
505
   },
506
   },
506
   watch: {
507
   watch: {
531
     addVisable(val) {
532
     addVisable(val) {
532
       if (val) {
533
       if (val) {
533
         this.activeName = "first";
534
         this.activeName = "first";
535
+        this.showmediate = false;
534
         this.getTemplateFn();
536
         this.getTemplateFn();
535
         if (this.addModifyData != 1) {
537
         if (this.addModifyData != 1) {
536
           this.caseApplicationSelectByIdFn(this.caseData.id);
538
           this.caseApplicationSelectByIdFn(this.caseData.id);
570
             this.applicantEvidence.push(item);
572
             this.applicantEvidence.push(item);
571
           } else if (item.annexType == 6) {
573
           } else if (item.annexType == 6) {
572
             this.respondentEvidence.push(item);
574
             this.respondentEvidence.push(item);
575
+          } else if (item.annexType == 7) {
576
+            this.showmediate = true
573
           }
577
           }
574
         });
578
         });
575
       });
579
       });