From 2b6e10187ffd44bb5bce5cabfa35ccdfe60f9a7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E7=8F=91?= Date: Mon, 22 Sep 2025 12:10:20 +0800 Subject: [PATCH] =?UTF-8?q?Improvement:=20=E8=AE=A2=E5=8D=95=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=A2=9E=E5=8A=A0payment=5Fmethod=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Order/List/index.tsx | 4 ++++ src/servers/api/typings.d.ts | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/pages/Order/List/index.tsx b/src/pages/Order/List/index.tsx index d28ec37..c988515 100644 --- a/src/pages/Order/List/index.tsx +++ b/src/pages/Order/List/index.tsx @@ -188,6 +188,10 @@ const ListPage: React.FC = () => { dataIndex: 'total', hideInSearch: true, }, + { + title: '支付方式', + dataIndex: 'payment_method', + }, { title: '总订单数', dataIndex: 'order_count', diff --git a/src/servers/api/typings.d.ts b/src/servers/api/typings.d.ts index bb41385..57673d1 100644 --- a/src/servers/api/typings.d.ts +++ b/src/servers/api/typings.d.ts @@ -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 = { -- 2.40.1