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

Merged
longbot merged 1 commits from longbot/WEB:Improvement-show-order-payment-method into main 2025-09-22 04:12:08 +00:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit 2b6e10187f - Show all commits

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 = {