categories.js 276 B

1234567891011121314
  1. const { http } = require('../utils/util')
  2. const API = {
  3. getCategoryURL: '/category',
  4. }
  5. function getCategoryAPI(data) {
  6. // return http( API.getCategoryURL, {data: data})
  7. return http({url: API.getCategoryURL, data: data})
  8. }
  9. module.exports = {
  10. getCategoryAPI
  11. }