wujingjing
2024-08-12 65b112afeed88e66d6bfd9f30f817674290d7780
1
2
3
4
5
6
7
8
9
10
// 导入封装的网络请求模块实例
import http from '../utils/http'
 
/**
 * @description 获取商品分类的数据
 * @returns Promise
 */
export const reqCategoryData = () => {
  return http.get('/index/findCategoryTree')
}