/* * 类目api * * @Author: 卓大 * @Date: 2022-09-03 21:35:00 * @Wechat: zhuda1024 * @Email: lab1024@163.com * @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012 */ import { getRequest, postRequest } from '/@/lib/axios'; export const categoryApi = { // 添加类目 @author 卓大 addCategory: (param) => { return postRequest('/category/add', param); }, // GET // 删除类目 @author 卓大 deleteCategoryById: (categoryId) => { return getRequest(`/category/delete/${categoryId}`); }, // 查询类目层级树 @author 卓大 queryCategoryTree: (param) => { return postRequest('/category/tree', param); }, // 更新类目 @author 卓大 updateCategory: (param) => { return postRequest('/category/update', param); }, };