fix: 功能优化。
This commit is contained in:
@@ -43,11 +43,16 @@
|
||||
<el-table-column label="总利息" align="center" prop="totalInterest" />
|
||||
<el-table-column label="利率" align="center" prop="interestRate" />
|
||||
<el-table-column label="余额" align="center" prop="balance" />
|
||||
<el-table-column label="到期日期" align="center" prop="dueDate" width="180">
|
||||
<el-table-column label="到期日期" align="center" prop="dueDate" width="100">
|
||||
<template #default="scope">
|
||||
<span>{{ parseTime(scope.row.dueDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="最近还款日" align="center" prop="repaymentDate" width="100">
|
||||
<template #default="scope">
|
||||
<span>{{ parseTime(scope.row.repaymentDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column label="关闭日期" align="center" prop="closeDate" width="180">
|
||||
<template #default="scope">
|
||||
<span>{{ parseTime(scope.row.closeDate, '{y}-{m}-{d}') }}</span>
|
||||
@@ -270,7 +275,7 @@ const data = reactive({
|
||||
name: null,
|
||||
type: '2',
|
||||
bankCardLendId: null,
|
||||
state: null
|
||||
state: '0'
|
||||
},
|
||||
queryCreditCardParams: {
|
||||
pageNum: 1,
|
||||
@@ -418,6 +423,7 @@ function handleQuery() {
|
||||
/** 重置按钮操作 */
|
||||
function resetQuery() {
|
||||
proxy.resetForm('queryRef')
|
||||
queryParams.value.state = null
|
||||
handleQuery()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user