/** * Category API module * 品类树型结构相关接口 */ import { http } from '~/utils/request' import type { ListVOBizCategoryVo } from '~/types/api' export const categoryApi = { /** * 获取品类树(一级品类 + 子品类) * 对应后端接口:POST /biz/categorys */ listTree() { return http.post('/biz/categorys') }, }