service.ts 390 Bytes
import axios from 'axios'
import type { ProductListQuery } from './type'

export const getCategoryList = () => {
  return axios.post('/shop/product/category', {})
}

export const getProductList = (params: ProductListQuery) => {
  return axios.post('/shop/product/list', params)
}

export const getDetail = (params: { id: string }) => {
  return axios.post('/shop/product/detail', params)
}