|
|
@ -51,6 +51,7 @@ |
|
|
|
<div class=""> |
|
|
|
<el-table :key="tableKey" v-loading="listLoading" :data="list" :border="true" style="width: 100%;"> |
|
|
|
<el-table-column label="序号" type="index" width="80" :index="indexMethod" align="center"/> |
|
|
|
<el-table-column prop="useOrgName" label="分公司" align="center" width="120" /> |
|
|
|
<el-table-column prop="loanContractNo" label="贷款合同编号" align="center" width="180" /> |
|
|
|
<el-table-column prop="bankName" label="资方" align="center" min-width="100" /> |
|
|
|
<el-table-column prop="bankContractNo" label="资方合同编号" align="center" width="180" /> |
|
|
@ -122,7 +123,9 @@ export default { |
|
|
|
loanContractNo: '', |
|
|
|
period: '', |
|
|
|
vinNo: '', |
|
|
|
orgPath: '' |
|
|
|
orgPath: '', |
|
|
|
menuUrl: '', |
|
|
|
userSid: '' |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -163,7 +166,9 @@ export default { |
|
|
|
// 查询列表信息 |
|
|
|
getList() { |
|
|
|
this.listLoading = true |
|
|
|
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid') |
|
|
|
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath') |
|
|
|
this.listQuery.params.menuUrl = this.$route.path |
|
|
|
req.listPage(this.listQuery).then(response => { |
|
|
|
this.listLoading = false |
|
|
|
if (response.success) { |
|
|
@ -196,7 +201,9 @@ export default { |
|
|
|
loanContractNo: '', |
|
|
|
period: '', |
|
|
|
vinNo: '', |
|
|
|
orgPath: '' |
|
|
|
orgPath: '', |
|
|
|
menuUrl: '', |
|
|
|
userSid: '' |
|
|
|
} |
|
|
|
} |
|
|
|
this.getList() |
|
|
|