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