From 4f6eee4b727d7ad7673b94fc3700b846bd83f039 Mon Sep 17 00:00:00 2001 From: DaxPay Date: Tue, 11 Jun 2024 16:11:27 +0800 Subject: [PATCH] =?UTF-8?q?ref=20=E5=90=84=E7=B1=BB=E5=9E=8B=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E6=89=A9=E5=B1=95=E5=90=88=E5=B9=B6=E5=88=B0=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=AF=B9=E8=B1=A1=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../allocation/order/AllocationOrder.api.ts | 14 +++------- .../allocation/order/AllocationOrderInfo.vue | 12 ++++----- src/views/payment/order/pay/PayOrder.api.ts | 16 +++--------- src/views/payment/order/pay/PayOrderInfo.vue | 14 +++++----- .../payment/order/refund/RefundOrder.api.ts | 26 +++---------------- .../payment/order/refund/RefundOrderInfo.vue | 8 +++--- 6 files changed, 26 insertions(+), 64 deletions(-) diff --git a/src/views/payment/allocation/order/AllocationOrder.api.ts b/src/views/payment/allocation/order/AllocationOrder.api.ts index ffe2da84e..ee19300fc 100644 --- a/src/views/payment/allocation/order/AllocationOrder.api.ts +++ b/src/views/payment/allocation/order/AllocationOrder.api.ts @@ -132,18 +132,8 @@ export interface AllocationOrder extends BaseEntity { status?: string // 处理结果 result?: string - // 错误码 - errorCode?: string - // 错误原因 - errorMsg?: string // 完成时间 finishTime?: string -} - -/** - * 分账扩展订单信息 - */ -export interface AllocationOrderExtra { // 异步通知地址 notifyUrl?: string // 商户扩展参数 @@ -154,6 +144,10 @@ export interface AllocationOrderExtra { reqTime?: string // 支付终端ip clientIp?: string + // 错误码 + errorCode?: string + // 错误原因 + errorMsg?: string } /** diff --git a/src/views/payment/allocation/order/AllocationOrderInfo.vue b/src/views/payment/allocation/order/AllocationOrderInfo.vue index 2957eb2c3..a53c5b274 100644 --- a/src/views/payment/allocation/order/AllocationOrderInfo.vue +++ b/src/views/payment/allocation/order/AllocationOrderInfo.vue @@ -53,13 +53,13 @@ {{ order.finishTime }} - {{ orderExtra.attach }} + {{ order.attach }} - {{ orderExtra.clientIp || '空' }} + {{ order.clientIp || '空' }} - {{ orderExtra.notifyUrl }} + {{ order.notifyUrl }} {{ order.errorMsg }} @@ -80,14 +80,13 @@