category.js 343 B

123456789101112
  1. import {GetApi, PostApi} from "@/api/request"
  2. export const search = new PostApi(`/system/category/search`)
  3. export const getAll = new GetApi(`/system/category/getAll`)
  4. export const add = new PostApi(`/system/category/add`)
  5. export const update = new PostApi(`/system/category/update`)
  6. export const del = new PostApi(`/system/category/del`)