【update】标签内容管理-接口联调

This commit is contained in:
fengchenchen
2023-08-22 09:10:21 +08:00
parent 92e7200b89
commit 93e23da64d
16 changed files with 181 additions and 85 deletions
+7 -1
View File
@@ -109,6 +109,10 @@ const editAreaData = (params) => postAction('/tag/LawsArea/edit', params)
const addTag = (params) => postAction('/tag/lawsTag/add', params)
// 标签管理- 编辑
const editTag = (params) => postAction('/tag/lawsTag/edit', params)
// 标签内容管理- 新增
const addCategoryItem = (params) => postAction('/sys/category/add', params)
const editCategoryItem = (params) => postAction('/sys/category/edit', params)
// 通过文件的id获取文件的相应信息
const getFileInfo = (params) => getAction('/sys/oss/file/queryById', params)
@@ -175,5 +179,7 @@ export {
getFileInfo,
addTag,
editTag
editTag,
addCategoryItem,
editCategoryItem
}