feat-wip(components): 数据字典相关页面代码提交

This commit is contained in:
2025-12-04 23:16:29 +08:00
parent 0943818fec
commit ccf2565e1d
9 changed files with 167 additions and 36 deletions

View File

@ -43,3 +43,13 @@ export function fetchDictionaryDeleteBatch(ids: string[]) {
}
});
}
export function fetchTreeDictionaryItem(dictionaryId: string) {
return request<Api.Sys.Core.DictionaryItem[]>({
url: '/dictionaryItem/tree',
method: 'post',
data: {
dictionaryId
}
});
}