update 树形字典修改

This commit is contained in:
赵霄
2023-09-13 11:41:24 +08:00
parent a75812fd2f
commit 78ccb24a20
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -64,6 +64,8 @@ const addDictItem = (params) => postAction('/sys/dictItem/add', params)
const editDictItem = (params) => postAction('/sys/dictItem/edit', params)
// 获得数据字典的树形格式数据
const getDictTreeList = (params) => getAction('/sys/dictItem/treeList', params)
// 获取能在form中使用的数据字典树形格式数据
const getFormDictTreeList = (params) => getAction('/sys/dictItem/treeListOption', params)
// 字典标签专用(通过code获取字典数组)
export const ajaxGetDictItems = (code, params) => getAction(`/sys/dict/getDictItems/${code}`, params)
@@ -165,6 +167,7 @@ export {
addDictItem,
editDictItem,
getDictTreeList,
getFormDictTreeList,
doReleaseData,
doReovkeData,
getLoginfo,