mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2026-01-13 06:03:51 +08:00
feat(order): 优化退款订单详情展示
This commit is contained in:
10
.env.build
10
.env.build
@@ -2,18 +2,18 @@
|
||||
VITE_GLOB_APP_TITLE=DaxPay服务端
|
||||
|
||||
# 独立部署模式
|
||||
#VITE_PUBLIC_PATH=/
|
||||
VITE_PUBLIC_PATH=/
|
||||
# API 接口前缀
|
||||
#VITE_GLOB_API_URL_PREFIX=/server
|
||||
VITE_GLOB_API_URL_PREFIX=/server
|
||||
|
||||
# 嵌入式模式 与后端部署在一起
|
||||
VITE_PUBLIC_PATH=/web
|
||||
#VITE_PUBLIC_PATH=/web
|
||||
# API 接口前缀
|
||||
VITE_GLOB_API_URL_PREFIX=
|
||||
#VITE_GLOB_API_URL_PREFIX=
|
||||
|
||||
|
||||
# 是否启用gzip压缩或brotli压缩, 可选: gzip | brotli | none, 如果你需要多种形式,你可以用','来分隔
|
||||
VITE_BUILD_COMPRESS='none'
|
||||
VITE_BUILD_COMPRESS='gzip'
|
||||
|
||||
# 接口地址
|
||||
VITE_GLOB_API_URL=
|
||||
|
||||
@@ -119,6 +119,8 @@ export interface RefundOrder extends MchEntity {
|
||||
orderNo?: string
|
||||
// 商户支付订单号
|
||||
bizOrderNo?: string
|
||||
// 通道支付订单号
|
||||
outOrderNo?: string
|
||||
// 支付标题
|
||||
title?: string
|
||||
// 退款号
|
||||
|
||||
@@ -9,12 +9,15 @@
|
||||
@cancel="handleCancel"
|
||||
>
|
||||
<a-descriptions bordered>
|
||||
<a-descriptions-item label="退款号" :column="{ lg: 2, md: 1 }">
|
||||
<a-descriptions-item label="退款标题" :span="2">
|
||||
{{ order.refundNo }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="商户退款号" :span="2">
|
||||
{{ order.bizRefundNo }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="通道退款号" :span="2">
|
||||
{{ order.outRefundNo }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="原支付标题" :span="2">
|
||||
{{ order.title }}
|
||||
</a-descriptions-item>
|
||||
@@ -24,6 +27,9 @@
|
||||
<a-descriptions-item label="商户支付订单号" :span="2">
|
||||
{{ order.bizOrderNo }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="通道支付订单号" :span="2">
|
||||
{{ order.outOrderNo }}
|
||||
</a-descriptions-item>
|
||||
<a-descriptions-item label="退款金额(元)" :span="2">
|
||||
{{ order.amount ? order.amount : 0 }}
|
||||
</a-descriptions-item>
|
||||
|
||||
Reference in New Issue
Block a user