表单预览和修改
This commit is contained in:
@ -1,8 +1,20 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
export const listCategory = (query) =>
|
||||
export const listAllCategory = (query) =>
|
||||
request({
|
||||
url: "/flowable/category/list",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
export const addCategory = (data) =>
|
||||
request({
|
||||
url: "/flowable/category",
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
export const delCategory = (ids) =>
|
||||
request({
|
||||
url: "/flowable/category",
|
||||
method: "delete",
|
||||
data: { ids }
|
||||
});
|
||||
|
Reference in New Issue
Block a user