update 资料中心

This commit is contained in:
赵霄
2023-09-28 16:36:54 +08:00
parent e513b62b10
commit d2bfae1c78
6 changed files with 308 additions and 26 deletions
+22 -1
View File
@@ -77,6 +77,19 @@ const getDynamicMessageById = (params) => getAction('/laws/standard/lawsNewsFeed
// 动态消息-分享
const shareDynamicMessageById = (params) => postAction('/personal/lawsStandardSharing/dynamicMessages/add', params)
// 资料中心-新增
const addProfileCenter = (params) => postAction('', params)
// 资料中心-编辑
const editProfileCenter = (params) => postAction('', params)
// 资料中心-新增树节点
const addProfileCenterTree = (params) => postAction('', params)
// 资料中心-编辑树节点
const editProfileCenterTree = (params) => postAction('', params)
// 资料中心-删除树节点
const deleteProfileCenterTree = (params) => postAction('', params)
// 资料中心-获取树节点树
const getProfileCenterTree = (params) => getAction('', params)
export {
// 国内标准
getDomesticStandardSearchForm,
@@ -119,5 +132,13 @@ export {
saveDynamicMessage,
releaseDynamicMessage,
getDynamicMessageById,
shareDynamicMessageById
shareDynamicMessageById,
// 资料中心
addProfileCenter,
editProfileCenter,
addProfileCenterTree,
editProfileCenterTree,
deleteProfileCenterTree,
getProfileCenterTree
}