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

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