category.js 184 B

123456789101112
  1. const request = uni.$u.http
  2. // 分类列表
  3. export function getCategoryList(data) {
  4. return request.post(
  5. `v1/setting/categoryList`,
  6. data
  7. )
  8. }
  9. export default {
  10. getCategoryList
  11. }