You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
943 B
32 lines
943 B
/*
|
|
* 帮助文档 目录
|
|
*
|
|
* @Author: 1024创新实验室-主任:卓大
|
|
* @Date: 2022-09-03 21:56:31
|
|
* @Wechat: zhuda1024
|
|
* @Email: lab1024@163.com
|
|
* @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012
|
|
*/
|
|
import { postRequest, getRequest } from '/@/lib/axios';
|
|
|
|
export const helpDocCatalogApi = {
|
|
//帮助文档目录-获取全部 @author zhuoda
|
|
getAll: () => {
|
|
return getRequest('/support/helpDoc/helpDocCatalog/getAll');
|
|
},
|
|
|
|
//帮助文档目录-添加 @author zhuoda
|
|
add: (param) => {
|
|
return postRequest('/support/helpDoc/helpDocCatalog/add', param);
|
|
},
|
|
|
|
//帮助文档目录-更新 @author zhuoda
|
|
update: (param) => {
|
|
return postRequest('/support/helpDoc/helpDocCatalog/update', param);
|
|
},
|
|
|
|
//帮助文档目录-删除 @author zhuoda
|
|
delete: (helpDocCatalogId) => {
|
|
return getRequest(`/support/helpDoc/helpDocCatalog/delete/${helpDocCatalogId}`);
|
|
},
|
|
};
|
|
|