forked from yoone/WEB
Improvement: 订单页面增加payment_method相关内容
This commit is contained in:
parent
a575618f8f
commit
2b6e10187f
|
|
@ -188,6 +188,10 @@ const ListPage: React.FC = () => {
|
|||
dataIndex: 'total',
|
||||
hideInSearch: true,
|
||||
},
|
||||
{
|
||||
title: '支付方式',
|
||||
dataIndex: 'payment_method',
|
||||
},
|
||||
{
|
||||
title: '总订单数',
|
||||
dataIndex: 'order_count',
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue