fix: 自测bug问题修复。

This commit is contained in:
tianyongbao
2024-07-24 16:34:43 +08:00
parent f130d73826
commit 06e5028e3c
5 changed files with 139 additions and 130 deletions

View File

@@ -57,7 +57,7 @@
<el-pagination small background layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange" />
</div>
</div>
<!-- 添加或修改储蓄转账对话框 -->
<!-- 添加或修改储蓄账户转账对话框 -->
<el-dialog :title="title" v-model="open" width="600px" append-to-body>
<el-form ref="accountsTransferRecordRef" :model="form" :rules="rules" label-width="100px">
<el-form-item label="转出账户" prop="outAccountId">
@@ -80,7 +80,7 @@
<el-input v-model="form.remark" type="textarea" placeholder="请输入备注" />
</el-form-item>
</el-form>
<template v-if="title !== '查看储蓄转账'" #footer>
<template v-if="title !== '查看储蓄账户转账'" #footer>
<div class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
@@ -190,7 +190,7 @@ function getcreditCardList() {
})
}
/** 查询储蓄卡管理列表 */
/** 查询储蓄账户卡管理列表 */
function getDebitList() {
listAccounts(queryDebitParams.value).then((response) => {
debitCardList.value = response.rows
@@ -204,7 +204,7 @@ function getFutruesStocksList() {
})
}
/** 查询储蓄转账列表 */
/** 查询储蓄账户转账列表 */
function getList() {
loading.value = true
const timeRange = queryParams.value.time
@@ -279,7 +279,7 @@ function handleSelectionChange(selection) {
// 查看
const handleView = (row) => {
title.value = '查看储蓄转账'
title.value = '查看储蓄账户转账'
form.value = row
open.value = true
}
@@ -288,7 +288,7 @@ const handleView = (row) => {
function handleAdd() {
reset()
open.value = true
title.value = '添加储蓄转账'
title.value = '添加储蓄账户转账'
}
/** 修改按钮操作 */
@@ -298,7 +298,7 @@ function handleUpdate(row) {
getAccountsTransferRecord(_id).then((response) => {
form.value = response.data
open.value = true
title.value = '修改储蓄转账'
title.value = '修改储蓄账户转账'
})
}