|
@@ -38,19 +38,19 @@
|
|
</el-button>
|
|
</el-button>
|
|
</template>
|
|
</template>
|
|
<parentTable :data="pageData.records" slot="table" style="width: 100%;">
|
|
<parentTable :data="pageData.records" slot="table" style="width: 100%;">
|
|
- <el-table-column label="付款方" align="center" width='200' >
|
|
|
|
|
|
+ <el-table-column label="付款方" align="center" width='250' >
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
<span>{{ row.payer }}</span>
|
|
<span>{{ row.payer }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="付款银行" align="center" width='130' >
|
|
|
|
|
|
+ <el-table-column label="付款银行" align="center" width='100' >
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
- <span>{{ row.payerBank }}</span>
|
|
|
|
|
|
+ <span>{{ row.payerBank?row.payerBank:'-' }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="付款账号" align="center" width='200'>
|
|
|
|
|
|
+ <el-table-column label="付款账号" align="center" width='100'>
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
- <span>{{ row.payerAccount }}</span>
|
|
|
|
|
|
+ <span>{{ row.payerAccount?row.payerAccount:'-' }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="付款金额(元)" align="center" >
|
|
<el-table-column label="付款金额(元)" align="center" >
|
|
@@ -78,7 +78,7 @@
|
|
<span>{{ row.creator}}</span>
|
|
<span>{{ row.creator}}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="录入时间" align="center" width='160'>
|
|
|
|
|
|
+ <el-table-column label="录入时间" align="center" width='170'>
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
<span>{{ row.created}}</span>
|
|
<span>{{ row.created}}</span>
|
|
</template>
|
|
</template>
|
|
@@ -269,7 +269,7 @@ export default {
|
|
pageData: { records: [] },
|
|
pageData: { records: [] },
|
|
listQuery: {
|
|
listQuery: {
|
|
page: 1,
|
|
page: 1,
|
|
- size: 10,
|
|
|
|
|
|
+ size: 20,
|
|
descs: 'id',
|
|
descs: 'id',
|
|
keyword:null,
|
|
keyword:null,
|
|
startDate:null,
|
|
startDate:null,
|
|
@@ -335,7 +335,7 @@ export default {
|
|
this.payDate = '';
|
|
this.payDate = '';
|
|
this.listQuery = {
|
|
this.listQuery = {
|
|
current: 1,
|
|
current: 1,
|
|
- size: 10,
|
|
|
|
|
|
+ size: 20,
|
|
descs: 'id',
|
|
descs: 'id',
|
|
}
|
|
}
|
|
this.getList()
|
|
this.getList()
|
|
@@ -343,7 +343,7 @@ export default {
|
|
searchList() {
|
|
searchList() {
|
|
// 重置分页
|
|
// 重置分页
|
|
this.listQuery.page = 1
|
|
this.listQuery.page = 1
|
|
- this.listQuery.size = 10
|
|
|
|
|
|
+ this.listQuery.size = 20
|
|
if (this.payDate){
|
|
if (this.payDate){
|
|
this.listQuery.startDate = this.payDate[0];
|
|
this.listQuery.startDate = this.payDate[0];
|
|
this.listQuery.endDate = this.payDate[1];
|
|
this.listQuery.endDate = this.payDate[1];
|