修改测试bug

This commit is contained in:
gyj
2024-01-24 15:33:37 +08:00
parent 824e8c490f
commit d81a0d1b47
4 changed files with 37 additions and 9 deletions
@@ -92,8 +92,16 @@
</el-form-item>
</el-col>
<el-col :span="24" v-if="modelFlag">
<el-form-item label="证据">
<div v-for="(item, index) in formData.caseAttachList" :key="index">
<el-form-item label="证据:">
<div v-for="(item, index) in formData.caseAttachList" :key="index" v-if="item.annexType==2">
<div style="color: blue;cursor: pointer;" @click="fileDetil(item.annexPath)">{{
item.annexName }}</div>
</div>
</el-form-item>
</el-col>
<el-col :span="24" v-if="modelFlag">
<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)">{{
item.annexName }}</div>
</div>
@@ -424,6 +432,7 @@ export default {
this.respondentEvidence = [];
caseApplicationSelectById({ id: data }).then((res => {
this.formData = res.data;
console.log(this.formData)
this.formData.caseAttachList.forEach(item => {
if (item.annexType == 2) {
this.applicantEvidence.push(item)