[update] 市场法规清单

This commit is contained in:
lideqin
2024-06-20 17:11:52 +08:00
parent 6a6ce2db9c
commit 143a1edf7a
8 changed files with 599 additions and 37 deletions
+19 -1
View File
@@ -134,6 +134,17 @@ const addStandardMasterPlan = (params) => postAction('/laws/StandardMasterPlan/a
// 标准主计划-编辑
const editStandardMasterPlan = (params) => postAction('/laws/StandardMasterPlan/edit', params)
// 市场法规清单-根据id查询-用于编辑
const getMarketRegulationListById = (params) => getAction('', params)
// 市场法规清单-根据ids获取多个清单的清单列表-用于复制
const getMarketRegulationListByIds = (params) => getAction('', params)
// 市场法规清单-新增
const marketRegulationListAdd = (params) => postAction('', params)
// 市场法规清单-编辑
const marketRegulationListEdit = (params) => postAction('', params)
// 市场法规清单-获取历史版本列表
const marketRegulationListHistoryList = (params) => getAction('', params)
export {
// 国内标准
getDomesticStandardSearchForm,
@@ -209,5 +220,12 @@ export {
// 标准主计划
getStandardMasterPlanById,
addStandardMasterPlan,
editStandardMasterPlan
editStandardMasterPlan,
// 市场法规清单
getMarketRegulationListById,
getMarketRegulationListByIds,
marketRegulationListAdd,
marketRegulationListEdit,
marketRegulationListHistoryList
}