diff --git a/src/views/payment/channel/alipay/record/AlipayRecord.api.ts b/src/views/payment/channel/alipay/record/AlipayRecord.api.ts new file mode 100644 index 000000000..b975a99d7 --- /dev/null +++ b/src/views/payment/channel/alipay/record/AlipayRecord.api.ts @@ -0,0 +1,41 @@ +import { defHttp } from '/@/utils/http/axios' +import { Result, PageResult } from '/#/axios' +import { BaseEntity } from '/#/web' + +/** + * 分页 + */ +export function page(params) { + return defHttp.get>>({ + url: '/alipay/record/page', + params, + }) +} + +/** + * 获取详情 + */ +export function get(id) { + return defHttp.get>({ + url: '/alipay/record/findById', + params: { id }, + }) +} + +/** + * 记录 + */ +export interface AlipayRecord extends BaseEntity { + // 标题 + title?: string + // 业务类型 + type?: string + // 金额 + amount?: string + // 交易订单号 + orderId?: string + // 交易订单号 + gatewayOrderNo?: string + // 终端ip + ip?: string +} diff --git a/src/views/payment/channel/alipay/record/AlipayRecordInfo.vue b/src/views/payment/channel/alipay/record/AlipayRecordInfo.vue new file mode 100644 index 000000000..9eeb08d87 --- /dev/null +++ b/src/views/payment/channel/alipay/record/AlipayRecordInfo.vue @@ -0,0 +1,87 @@ + + + + + diff --git a/src/views/payment/channel/alipay/record/AlipayRecordList.vue b/src/views/payment/channel/alipay/record/AlipayRecordList.vue new file mode 100644 index 000000000..2aac1614b --- /dev/null +++ b/src/views/payment/channel/alipay/record/AlipayRecordList.vue @@ -0,0 +1,110 @@ + + + + + diff --git a/src/views/payment/channel/voucher/record/VoucherRecordInfo.vue b/src/views/payment/channel/voucher/record/VoucherRecordInfo.vue index 18afecef9..a93480d29 100644 --- a/src/views/payment/channel/voucher/record/VoucherRecordInfo.vue +++ b/src/views/payment/channel/voucher/record/VoucherRecordInfo.vue @@ -28,9 +28,6 @@ {{ dictConvert('VoucherRecordType', voucherRecord.type) }} - - {{ voucherRecord.remark }} - {{ voucherRecord.createTime }} diff --git a/src/views/payment/channel/voucher/record/VoucherRecordList.vue b/src/views/payment/channel/voucher/record/VoucherRecordList.vue index 3cb49587c..d8917676f 100644 --- a/src/views/payment/channel/voucher/record/VoucherRecordList.vue +++ b/src/views/payment/channel/voucher/record/VoucherRecordList.vue @@ -18,7 +18,6 @@ -