fix: 功能优化。

This commit is contained in:
tianyongbao
2024-06-15 15:54:31 +08:00
parent 64d7e1f780
commit 8617b88f63
15 changed files with 33 additions and 41 deletions

View File

@@ -10,7 +10,7 @@
</el-form-item>
<el-form-item label="信用卡" style="width: 500px" prop="outAccountId">
<el-select v-model="queryParams.outAccountId" placeholder="请选择信用卡" clearable>
<el-option v-for="creditCard in bankCardLendList" :key="creditCard.id" :label="creditCard.nameCode" :value="creditCard.id" />
<el-option v-for="creditCard in bankCardLendList" :key="creditCard.id" :label="creditCard.nameCodeAvailableLimit" :value="creditCard.id" />
</el-select>
</el-form-item>
<el-form-item label="刷卡时间" prop="time">
@@ -43,7 +43,7 @@
<el-table-column label="刷卡商户" align="center" prop="merchantName" />
<el-table-column label="信用卡" align="center" prop="outAccountName" />
<el-table-column label="刷卡时间" align="center" prop="createTime" />
<el-table-column label="交易金额" align="center" prop="amount" />
<el-table-column label="刷卡金额" align="center" prop="amount" />
<el-table-column label="手续费" width="100" align="center" prop="commission" />
<el-table-column label="储蓄卡" align="center" prop="inAccountName" />
<el-table-column label="入账金额" width="120" align="center" prop="actualAmount" />
@@ -76,7 +76,7 @@
</el-form-item>
<el-form-item label="信用卡" prop="outAccountId">
<el-select v-model="form.outAccountId" placeholder="请选择信用卡" clearable>
<el-option v-for="creditCard in bankCardLendList" :key="creditCard.id" :label="creditCard.nameCode" :value="creditCard.id" />
<el-option v-for="creditCard in bankCardLendList" :key="creditCard.id" :label="creditCard.nameCodeAvailableLimit" :value="creditCard.id" />
</el-select>
</el-form-item>
<el-form-item label="刷卡时间" prop="createTime">
@@ -202,13 +202,6 @@ function getPosMachineList() {
})
}
/** 查询投资账户管理列表 */
function getFutruesStocksList() {
listAccounts(queryFutruesStocksParams.value).then((response) => {
futruesStocksList.value = response.rows
})
}
/** 查询POS机刷卡列表 */
function getList() {
loading.value = true
@@ -361,7 +354,6 @@ function handleExport() {
`accountsTransferRecord_${new Date().getTime()}.xlsx`
)
}
getFutruesStocksList()
getPosMachineList()
getBankCardLendList()
getList()