feat(order): 添加订单退款功能并优化用户票券页面显示
- 新增 refundShopOrder API 接口用于处理订单退款申请 - 在 shopOrder 页面添加退款相关操作按钮和逻辑 - 修改用户票券页面表格列配置,添加订单号和数量字段 - 更新订单详情页面商品数量字段映射关系 - 启用开发环境 API 地址配置
This commit is contained in:
@@ -736,10 +736,10 @@
|
||||
},
|
||||
{
|
||||
title: '数量',
|
||||
dataIndex: 'quantity',
|
||||
dataIndex: 'totalNum',
|
||||
align: 'center' as const,
|
||||
customRender: ({ record }: { record: any }) => {
|
||||
return record.quantity || 1;
|
||||
return record.totalNum || 1;
|
||||
}
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user