From f3390427aca0fa8b1e0e17e666bcce03526df95e Mon Sep 17 00:00:00 2001 From: YunaiV Date: Fri, 3 Oct 2025 08:52:55 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E3=80=90antd=E3=80=91=E3=80=90erp?= =?UTF-8?q?=20=E7=B3=BB=E7=BB=9F=E3=80=91product=20category=20=E8=BF=81?= =?UTF-8?q?=E7=A7=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/api/erp/product/category/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/web-antd/src/api/erp/product/category/index.ts b/apps/web-antd/src/api/erp/product/category/index.ts index 74e5465c1..3887b1217 100644 --- a/apps/web-antd/src/api/erp/product/category/index.ts +++ b/apps/web-antd/src/api/erp/product/category/index.ts @@ -1,4 +1,5 @@ import { requestClient } from '#/api/request'; +import type {PageParam} from '@vben/request'; export namespace ErpProductCategoryApi { /** ERP 产品分类信息 */ @@ -14,9 +15,10 @@ export namespace ErpProductCategoryApi { } /** 查询产品分类列表 */ -export function getProductCategoryList() { +export function getProductCategoryList(params: any) { return requestClient.get( '/erp/product-category/list', + { params }, ); }