wujingjing
2024-08-09 f1c54fca586a4d30e046b2a7ce4a18e02c3fe17e
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')
}