[add] ASMS接口管理

This commit is contained in:
danshihao
2023-10-18 11:02:19 +08:00
parent a56832d622
commit dce481068a
3 changed files with 300 additions and 7 deletions
+14 -7
View File
@@ -132,6 +132,11 @@ const getWorkGroupTreeList = (params) => getAction('/sys/lawsWorkingGroup/list',
// 企业级别映射管理,获取列表
const getEnterpriseLevelMapList = (params) => getAction('/sys/lawsGrade/list', params)
// ASMS接口管理-新增
const addAsmsInterface = (params) => postAction('/docking/asms/api/lawsAsmsOpenApi/add', params)
// ASMS接口管理-编辑
const editAsmsInterface = (params) => postAction('/docking/asms/api/lawsAsmsOpenApi/edit', params)
export {
addRole,
editRole,
@@ -190,22 +195,24 @@ export {
queryMyDepartTreeList,
getUserNoticeInfo,
getDictItemsFromCache,
getShowAreaData,
addAreaData,
editAreaData,
getFileInfo,
addTag,
editTag,
addCategoryItem,
editCategoryItem,
getStandardList,
getWorkGroupTreeList,
getEnterpriseLevelMapList,
getSSOUserInfo
getSSOUserInfo,
addAsmsInterface,
editAsmsInterface
}