From 73183f0509841795b749d2f00f4b85542157972b Mon Sep 17 00:00:00 2001 From: bootx Date: Tue, 27 Feb 2024 23:46:07 +0800 Subject: [PATCH 1/6] =?UTF-8?q?fix=20=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/payment/order/pay/PayOrderList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/payment/order/pay/PayOrderList.vue b/src/views/payment/order/pay/PayOrderList.vue index 1faf7708..73fc9819 100644 --- a/src/views/payment/order/pay/PayOrderList.vue +++ b/src/views/payment/order/pay/PayOrderList.vue @@ -110,7 +110,7 @@ // 查询条件 const fields = computed(() => { return [ - { field: 'paymentId', type: STRING, name: '支付ID', placeholder: '请输入完整支付ID' }, + { field: 'id', type: STRING, name: '支付ID', placeholder: '请输入完整支付ID' }, { field: 'businessNo', type: STRING, name: '业务号', placeholder: '请输入业务号' }, { field: 'gatewayOrderNo', type: STRING, name: '网关订单号', placeholder: '请输入完整网关订单号' }, { field: 'title', type: STRING, name: '标题', placeholder: '请输入标题' }, -- Gitee From 28456e9fbd816dc5ca8963dc1351561e73c238bc Mon Sep 17 00:00:00 2001 From: xxm1995 Date: Wed, 28 Feb 2024 17:02:01 +0800 Subject: [PATCH 2/6] =?UTF-8?q?feat=20=E6=B5=81=E6=B0=B4=E8=A1=A8=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E8=B0=83=E6=95=B4,=20=E5=AF=B9=E8=B4=A6=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E8=81=94=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/settings/siteSetting.ts | 8 ++++---- .../payment/channel/alipay/record/AlipayRecord.api.ts | 2 ++ .../channel/alipay/record/AlipayRecordInfo.vue | 3 +++ .../channel/alipay/record/AlipayRecordList.vue | 2 +- .../channel/wechat/record/WechatPayRecord.api.ts | 2 ++ .../channel/wechat/record/WechatPayRecordInfo.vue | 3 +++ .../channel/wechat/record/WechatPayRecordList.vue | 2 +- .../payment/order/reconcile/ReconcileOrder.api.ts | 10 ++++++++++ .../payment/order/reconcile/ReconcileOrderList.vue | 11 +++++++---- src/views/payment/order/refund/RefundOrderList.vue | 5 +++-- src/views/sys/about/index.vue | 5 ++--- 11 files changed, 38 insertions(+), 15 deletions(-) diff --git a/src/settings/siteSetting.ts b/src/settings/siteSetting.ts index ec0cd798..0ae290dc 100644 --- a/src/settings/siteSetting.ts +++ b/src/settings/siteSetting.ts @@ -1,11 +1,11 @@ // github repo url -export const GITHUB_URL = 'https://github.com/xxm1995/bootx-platform' +export const GITHUB_URL = 'https://github.com/dromara/dax-pay' // gitee repo url -export const GITEE_URL = 'https://gitee.com/bootx/bootx-platform' +export const GITEE_URL = 'https://gitee.com/dromara/dax-pay' // 文档地址 -export const DOC_URL = 'https://gitee.com/bootx/bootx-platform' +export const DOC_URL = 'https://bootx.gitee.io/' // 预览地址 -export const SITE_URL = 'http://v3.platform.bootx.cn/' +export const SITE_URL = 'https://daxpay.demo.bootx.cn/' diff --git a/src/views/payment/channel/alipay/record/AlipayRecord.api.ts b/src/views/payment/channel/alipay/record/AlipayRecord.api.ts index b975a99d..551dc629 100644 --- a/src/views/payment/channel/alipay/record/AlipayRecord.api.ts +++ b/src/views/payment/channel/alipay/record/AlipayRecord.api.ts @@ -38,4 +38,6 @@ export interface AlipayRecord extends BaseEntity { gatewayOrderNo?: string // 终端ip ip?: string + // 网关时间 + gatewayTime?: string } diff --git a/src/views/payment/channel/alipay/record/AlipayRecordInfo.vue b/src/views/payment/channel/alipay/record/AlipayRecordInfo.vue index 9eeb08d8..5ef9cac7 100644 --- a/src/views/payment/channel/alipay/record/AlipayRecordInfo.vue +++ b/src/views/payment/channel/alipay/record/AlipayRecordInfo.vue @@ -25,6 +25,9 @@ {{ dictConvert('AlipayRecordType', alipayRecord.type) }} + + {{ alipayRecord.gatewayTime }} + {{ alipayRecord.createTime }} diff --git a/src/views/payment/channel/alipay/record/AlipayRecordList.vue b/src/views/payment/channel/alipay/record/AlipayRecordList.vue index 20e5d7c7..0a262654 100644 --- a/src/views/payment/channel/alipay/record/AlipayRecordList.vue +++ b/src/views/payment/channel/alipay/record/AlipayRecordList.vue @@ -23,7 +23,7 @@ - + -- Gitee From 97466ee5e7e906a03d78f76ebbce9a829eff1f7f Mon Sep 17 00:00:00 2001 From: xxm1995 Date: Tue, 5 Mar 2024 16:51:39 +0800 Subject: [PATCH 5/6] =?UTF-8?q?feat=20=E5=AF=B9=E8=B4=A6=E6=98=8E=E7=BB=86?= =?UTF-8?q?=E5=92=8C=E5=B7=AE=E5=BC=82=E5=8D=95=E6=9F=A5=E8=AF=A2=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reconcile/detail/ReconcileDetailList.vue | 28 +++++++++++++------ .../reconcile/diff/ReconcileDiffListModel.vue | 24 ++++++++++++---- 2 files changed, 37 insertions(+), 15 deletions(-) diff --git a/src/views/payment/order/reconcile/detail/ReconcileDetailList.vue b/src/views/payment/order/reconcile/detail/ReconcileDetailList.vue index 7608f36e..85672049 100644 --- a/src/views/payment/order/reconcile/detail/ReconcileDetailList.vue +++ b/src/views/payment/order/reconcile/detail/ReconcileDetailList.vue @@ -2,9 +2,16 @@ - + - + @@ -13,7 +20,7 @@ {{ dictConvert('ReconcileTrade', row.type) }} - +