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" > - + +