Improvement: 订单页面增加payment_method相关内容

This commit is contained in:
黄珑 2025-09-22 12:10:20 +08:00
parent a575618f8f
commit 2b6e10187f
2 changed files with 6 additions and 0 deletions

View File

@ -188,6 +188,10 @@ const ListPage: React.FC = () => {
dataIndex: 'total',
hideInSearch: true,
},
{
title: '支付方式',
dataIndex: 'payment_method',
},
{
title: '总订单数',
dataIndex: 'order_count',

View File

@ -331,6 +331,7 @@ declare namespace API {
| 'after_sale_pending'
| 'pending_reshipment'
| 'pending_refund';
paymentMethod?: string;
};
type ordercontrollerRefundorderParams = {
@ -853,6 +854,7 @@ declare namespace API {
| 'after_sale_pending'
| 'pending_reshipment'
| 'pending_refund';
paymentMethod?: string;
};
type QueryOrderSalesDTO = {