fix: 功能优化。

This commit is contained in:
tianyongbao
2024-04-26 17:32:42 +08:00
parent ece536629b
commit aa551ec12d
3 changed files with 391 additions and 461 deletions

View File

@@ -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()
}