From 899aafd6964ac2869e203098d7103d31e52b6566 Mon Sep 17 00:00:00 2001 From: bootx Date: Mon, 19 Feb 2024 23:34:02 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=E6=B5=81=E6=B0=B4=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/payment/channel/cash/record/CashRecord.api.ts | 2 ++ src/views/payment/channel/cash/record/CashRecordInfo.vue | 3 +++ src/views/payment/channel/cash/record/CashRecordList.vue | 5 +++-- .../payment/channel/voucher/record/VoucherRecord.api.ts | 2 ++ .../payment/channel/voucher/record/VoucherRecordInfo.vue | 3 +++ .../payment/channel/voucher/record/VoucherRecordList.vue | 3 ++- src/views/payment/channel/wallet/record/WalletRecord.api.ts | 2 ++ src/views/payment/channel/wallet/record/WalletRecordInfo.vue | 3 +++ src/views/payment/channel/wallet/record/WalletRecordList.vue | 3 ++- 9 files changed, 22 insertions(+), 4 deletions(-) diff --git a/src/views/payment/channel/cash/record/CashRecord.api.ts b/src/views/payment/channel/cash/record/CashRecord.api.ts index 62574b151..6cf66e9ff 100644 --- a/src/views/payment/channel/cash/record/CashRecord.api.ts +++ b/src/views/payment/channel/cash/record/CashRecord.api.ts @@ -26,6 +26,8 @@ export function get(id) { * 现金记录 */ export interface CashRecord extends BaseEntity { + // 标题 + title?: string // 类型 type?: string // 金额 diff --git a/src/views/payment/channel/cash/record/CashRecordInfo.vue b/src/views/payment/channel/cash/record/CashRecordInfo.vue index 92a78313b..5988d1bba 100644 --- a/src/views/payment/channel/cash/record/CashRecordInfo.vue +++ b/src/views/payment/channel/cash/record/CashRecordInfo.vue @@ -10,6 +10,9 @@ > + + {{ cashRecord.title }} + {{ cashRecord.amount }} diff --git a/src/views/payment/channel/cash/record/CashRecordList.vue b/src/views/payment/channel/cash/record/CashRecordList.vue index 4b270bc26..2f0322742 100644 --- a/src/views/payment/channel/cash/record/CashRecordList.vue +++ b/src/views/payment/channel/cash/record/CashRecordList.vue @@ -14,13 +14,14 @@ @sort-change="sortChange" > - - + + + diff --git a/src/views/payment/channel/voucher/record/VoucherRecord.api.ts b/src/views/payment/channel/voucher/record/VoucherRecord.api.ts index 6642cd73f..72f608bf1 100644 --- a/src/views/payment/channel/voucher/record/VoucherRecord.api.ts +++ b/src/views/payment/channel/voucher/record/VoucherRecord.api.ts @@ -28,6 +28,8 @@ export function get(id) { export interface VoucherRecord extends BaseEntity { // 储值卡 id voucherId?: string + // 标题 + title?: string // 业务类型 type?: string // 金额 diff --git a/src/views/payment/channel/voucher/record/VoucherRecordInfo.vue b/src/views/payment/channel/voucher/record/VoucherRecordInfo.vue index 674c64abc..18afecef9 100644 --- a/src/views/payment/channel/voucher/record/VoucherRecordInfo.vue +++ b/src/views/payment/channel/voucher/record/VoucherRecordInfo.vue @@ -10,6 +10,9 @@ > + + {{ voucherRecord.title }} + {{ voucherRecord.amount }} diff --git a/src/views/payment/channel/voucher/record/VoucherRecordList.vue b/src/views/payment/channel/voucher/record/VoucherRecordList.vue index ef9702d5d..3cb49587c 100644 --- a/src/views/payment/channel/voucher/record/VoucherRecordList.vue +++ b/src/views/payment/channel/voucher/record/VoucherRecordList.vue @@ -10,7 +10,8 @@ @sort-change="sortChange" > - + + diff --git a/src/views/payment/channel/wallet/record/WalletRecord.api.ts b/src/views/payment/channel/wallet/record/WalletRecord.api.ts index e5b68b82f..28826ad4b 100644 --- a/src/views/payment/channel/wallet/record/WalletRecord.api.ts +++ b/src/views/payment/channel/wallet/record/WalletRecord.api.ts @@ -28,6 +28,8 @@ export function get(id) { export interface WalletRecord extends BaseEntity { // 钱包id walletId?: string + // 标题 + title?: string // 业务类型 type?: string // 金额 diff --git a/src/views/payment/channel/wallet/record/WalletRecordInfo.vue b/src/views/payment/channel/wallet/record/WalletRecordInfo.vue index 58f6cfa91..a481dde8e 100644 --- a/src/views/payment/channel/wallet/record/WalletRecordInfo.vue +++ b/src/views/payment/channel/wallet/record/WalletRecordInfo.vue @@ -10,6 +10,9 @@ > + + {{ walletRecord.title }} + {{ walletRecord.amount }} diff --git a/src/views/payment/channel/wallet/record/WalletRecordList.vue b/src/views/payment/channel/wallet/record/WalletRecordList.vue index fc007cf70..2a08f093f 100644 --- a/src/views/payment/channel/wallet/record/WalletRecordList.vue +++ b/src/views/payment/channel/wallet/record/WalletRecordList.vue @@ -10,13 +10,14 @@ @sort-change="sortChange" > - + +