初始化项目

This commit is contained in:
2026-03-22 14:53:19 +08:00
parent 7888164aff
commit bd55405817
19 changed files with 362 additions and 258 deletions

View File

@@ -26,6 +26,9 @@ export interface ErpCategory extends BasicModel<ErpCategory> {
export const erpCategoryList = (params?: ErpCategory | any) =>
defHttp.get<ErpCategory>({ url: adminPath + '/erp/category/list', params });
export const erpCategoryListAll = (params?: ErpCategory | any) =>
defHttp.get<ErpCategory[]>({ url: adminPath + '/erp/category/listAll', params });
export const erpCategoryListData = (params?: ErpCategory | any) =>
defHttp.post<Page<ErpCategory>>({ url: adminPath + '/erp/category/listData', params });