|
|
|
|
|
|
14
|
<el-form-item label="缴费金额:" prop="feePayable">
|
14
|
<el-form-item label="缴费金额:" prop="feePayable">
|
|
15
|
<el-input v-model="form.feePayable" :disabled="true"/>
|
15
|
<el-input v-model="form.feePayable" :disabled="true"/>
|
|
16
|
</el-form-item>
|
16
|
</el-form-item>
|
|
17
|
- <el-form-item label="申请人缴费凭证:" v-if="form.caseAttachList.length > 0">
|
|
|
|
|
|
17
|
+ <el-form-item label="申请人缴费凭证:" v-if="form.caseAttachList && form.caseAttachList.length > 0">
|
|
18
|
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index"
|
18
|
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index"
|
|
19
|
@click="preview(item.annexPath)">
|
19
|
@click="preview(item.annexPath)">
|
|
20
|
{{ item.annexName }}
|
20
|
{{ item.annexName }}
|
|
21
|
</div>
|
21
|
</div>
|
|
22
|
</el-form-item>
|
22
|
</el-form-item>
|
|
23
|
- <el-form-item label="被申请人缴费凭证:" v-if="form.resCaseAttachList.length > 0">
|
|
|
|
|
|
23
|
+ <el-form-item label="被申请人缴费凭证:" v-if="form.resCaseAttachList && form.resCaseAttachList.length > 0">
|
|
24
|
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.resCaseAttachList" :key="index"
|
24
|
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.resCaseAttachList" :key="index"
|
|
25
|
@click="preview(item.annexPath)">
|
25
|
@click="preview(item.annexPath)">
|
|
26
|
{{ item.annexName }}
|
26
|
{{ item.annexName }}
|