'调解书显示问题修复'

This commit is contained in:
hhl123456789
2024-02-22 11:15:57 +08:00
parent a48004581e
commit e42edc55d4
@@ -106,7 +106,7 @@
</div>
</el-form-item>
</el-col>
<el-col :span="24" v-if="modelFlag">
<el-col :span="24" v-if="modelFlag && showmediate">
<el-form-item label="调解书:">
<div v-for="(item, index) in formData.caseAttachList" :key="index" v-if="item.annexType == 7">
<div style="color: blue; cursor: pointer" @click="fileDetil(item.annexPath)">
@@ -500,7 +500,8 @@ export default {
respondentEvidence: [], //被申请人证据
buttonFlag: true,
getUserInfoList: {},
applicationFlag: null
applicationFlag: null,
showmediate: false
};
},
watch: {
@@ -531,6 +532,7 @@ export default {
addVisable(val) {
if (val) {
this.activeName = "first";
this.showmediate = false;
this.getTemplateFn();
if (this.addModifyData != 1) {
this.caseApplicationSelectByIdFn(this.caseData.id);
@@ -570,6 +572,8 @@ export default {
this.applicantEvidence.push(item);
} else if (item.annexType == 6) {
this.respondentEvidence.push(item);
} else if (item.annexType == 7) {
this.showmediate = true
}
});
});