调解员排序
This commit is contained in:
@@ -507,6 +507,7 @@ export default {
|
||||
addVisable(val) {
|
||||
if (val) {
|
||||
this.activeName = "first";
|
||||
this.getTemplateFn();
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
@@ -14,8 +14,15 @@
|
||||
<el-form-item label="缴费金额:" prop="feePayable">
|
||||
<el-input v-model="form.feePayable" />
|
||||
</el-form-item>
|
||||
<el-form-item label="缴费凭证:" prop="caseStatusName">
|
||||
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.caseAttachList" :key="index" @click="preview(item.annexPath)">
|
||||
<el-form-item label="申请人缴费凭证:" v-if="form.caseAttachList.length > 0">
|
||||
<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">
|
||||
<div style="color: #104fad;cursor:pointer" v-for="(item, index) in form.resCaseAttachList" :key="index"
|
||||
@click="preview(item.annexPath)">
|
||||
{{ item.annexName }}
|
||||
</div>
|
||||
</el-form-item>
|
||||
@@ -42,7 +49,6 @@ export default {
|
||||
detailform: {
|
||||
handler(val) {
|
||||
if (val) {
|
||||
console.log(val,"PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP");
|
||||
this.form = val;
|
||||
}
|
||||
},
|
||||
@@ -67,10 +73,9 @@ export default {
|
||||
message: "确认成功",
|
||||
type: "success",
|
||||
});
|
||||
|
||||
});
|
||||
this.cancel();
|
||||
this.$emit("getList", this.queryParams);
|
||||
});
|
||||
},
|
||||
cancel() {
|
||||
this.$emit("cancelpaymentdetails");
|
||||
|
||||
Reference in New Issue
Block a user