fix: 智聪记账管理,新增睡眠账户统计功能,优化展示余额。
This commit is contained in:
@@ -29,9 +29,9 @@
|
||||
<div class="content-con" v-loading="loading">
|
||||
<el-table v-loading="loading" :data="bankcardList" @selection-change="handleSelectionChange" height="calc(100% - 0.62rem)">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="信用卡名称" align="center" prop="name" />
|
||||
<el-table-column label="信用卡名称" align="center" width="150" prop="name" />
|
||||
<el-table-column label="信用卡卡号" align="center" prop="code" />
|
||||
<el-table-column label="开户日期" align="center" prop="activationDate" width="180">
|
||||
<el-table-column label="开户日期" align="center" prop="activationDate" width="120">
|
||||
<template #default="scope">
|
||||
<span>{{ parseTime(scope.row.activationDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
@@ -40,7 +40,8 @@
|
||||
<el-table-column label="还款日" align="center" width="100" prop="payDateName" />
|
||||
<el-table-column label="延缓期限" align="center" width="100" prop="delayPeriod" />
|
||||
<el-table-column label="信用卡额度" align="center" prop="creditLimit" />
|
||||
<el-table-column label="有效期" align="center" prop="effectiveDate" width="180">
|
||||
<el-table-column label="可用额度" align="center" prop="availableLimit" />
|
||||
<el-table-column label="有效期" align="center" prop="effectiveDate" width="120">
|
||||
<template #default="scope">
|
||||
<span>{{ parseTime(scope.row.effectiveDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user