mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-06-04 04:54:41 +00:00
v3.9.0【优化】typescript版本;【优化】App端消息;【优化】弹出层z-index;
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* 帮助文档 目录
|
||||
*
|
||||
* @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}`);
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user