合并0304
This commit is contained in:
@@ -284,14 +284,21 @@ export default {
|
||||
}
|
||||
this.caseStausArr.push(item);
|
||||
});
|
||||
if (this.$route.query.caseFlowId) {
|
||||
// if (this.$route.query.caseFlowId) {
|
||||
// let querydata = Number(this.$route.query.caseFlowId);
|
||||
// if (querydata > 0) {
|
||||
// this.$set(this.queryParams, 'caseFlowId', querydata)
|
||||
// }
|
||||
// }
|
||||
// this.getList(this.queryParams);
|
||||
});
|
||||
if (this.$route.query.caseFlowId) {
|
||||
let querydata = Number(this.$route.query.caseFlowId);
|
||||
if (querydata > 0) {
|
||||
this.$set(this.queryParams, 'caseFlowId', querydata)
|
||||
}
|
||||
}
|
||||
this.getList(this.queryParams);
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
/**所有按钮事件 */
|
||||
|
||||
@@ -14,13 +14,13 @@
|
||||
<el-form-item label="缴费金额:" prop="feePayable">
|
||||
<el-input v-model="form.feePayable" :disabled="true"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="申请人缴费凭证:" v-if="form.caseAttachList.length > 0">
|
||||
<el-form-item label="申请人缴费凭证:" v-if="form.caseAttachList">
|
||||
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index"
|
||||
@click="preview(item.annexPath)">
|
||||
{{ item.annexName }}
|
||||
</div>
|
||||
</el-form-item>
|
||||
<el-form-item label="被申请人缴费凭证:" v-if="form.resCaseAttachList.length > 0">
|
||||
<el-form-item label="被申请人缴费凭证:" v-if="form.resCaseAttachList">
|
||||
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.resCaseAttachList" :key="index"
|
||||
@click="preview(item.annexPath)">
|
||||
{{ item.annexName }}
|
||||
|
||||
Reference in New Issue
Block a user