Improvement: 订单页面增加payment_method相关内容
This commit is contained in:
parent
a575618f8f
commit
2b6e10187f
|
|
@ -188,6 +188,10 @@ const ListPage: React.FC = () => {
|
||||||
dataIndex: 'total',
|
dataIndex: 'total',
|
||||||
hideInSearch: true,
|
hideInSearch: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '支付方式',
|
||||||
|
dataIndex: 'payment_method',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '总订单数',
|
title: '总订单数',
|
||||||
dataIndex: 'order_count',
|
dataIndex: 'order_count',
|
||||||
|
|
|
||||||
|
|
@ -331,6 +331,7 @@ declare namespace API {
|
||||||
| 'after_sale_pending'
|
| 'after_sale_pending'
|
||||||
| 'pending_reshipment'
|
| 'pending_reshipment'
|
||||||
| 'pending_refund';
|
| 'pending_refund';
|
||||||
|
paymentMethod?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
type ordercontrollerRefundorderParams = {
|
type ordercontrollerRefundorderParams = {
|
||||||
|
|
@ -853,6 +854,7 @@ declare namespace API {
|
||||||
| 'after_sale_pending'
|
| 'after_sale_pending'
|
||||||
| 'pending_reshipment'
|
| 'pending_reshipment'
|
||||||
| 'pending_refund';
|
| 'pending_refund';
|
||||||
|
paymentMethod?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
type QueryOrderSalesDTO = {
|
type QueryOrderSalesDTO = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue