From 3f5da6f457701152d9ab30eab45b02340f21ee56 Mon Sep 17 00:00:00 2001 From: chashaobao Date: Tue, 30 Dec 2025 20:08:13 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A5=20feat(=E6=A8=A1=E5=9D=97):=20?= =?UTF-8?q?=E8=B5=A0=E9=80=81=E4=BC=9A=E5=91=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/table-list/give-vip/index.tsx | 4 ++-- src/services/typings.d.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/table-list/give-vip/index.tsx b/src/pages/table-list/give-vip/index.tsx index ee79931..c2a3804 100644 --- a/src/pages/table-list/give-vip/index.tsx +++ b/src/pages/table-list/give-vip/index.tsx @@ -48,7 +48,7 @@ const TableList: React.FC = () => { const columns: ProColumns[] = [ { title: '用户ID', - dataIndex: 'imOpenId', + dataIndex: 'userId', valueType: 'textarea', search: true, }, @@ -129,7 +129,7 @@ const TableList: React.FC = () => { onOpenChange={handleUpdateModalOpen} onFinish={async formData => { const params: API.PostGiveVip = { - imOpenId: formData.imOpenId, + userId: formData.userId, userPhone: formData.userPhone, productType: formData.productType, productSpecId: formData.productSpecId, diff --git a/src/services/typings.d.ts b/src/services/typings.d.ts index db44701..331e764 100644 --- a/src/services/typings.d.ts +++ b/src/services/typings.d.ts @@ -385,7 +385,7 @@ declare namespace API { interface GiveVipListItem { id: number; - imOpenId: string; + userId: string; userPhone: string; productType: ProductType; productSpecId: string; @@ -396,7 +396,7 @@ declare namespace API { } interface PostGiveVip { - imOpenId: string; + userId: string; userPhone?: string; productType?: ProductType; productSpecId?: string;