import { request } from '@/request'; import { GetBrandList, GetCategoryList, GetProductList } from './type'; export const getBrandList = (params: GetBrandList['req']) => request .get('v1/frontend/brand', { searchParams: { ...params }, }) .json(); export const getCategoryList = (params: GetCategoryList['req']) => request .get('v1/frontend/category/group', { searchParams: { ...params }, }) .json(); export const getProductList = (params: GetProductList['req']) => request .get('v1/frontend/item', { searchParams: { ...params }, }) .json();