字典子项增加排序
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-06-19 13:39:12 +08:00
parent 50ae94bf08
commit a41359111f
2 changed files with 33 additions and 67 deletions
+4 -3
View File
@@ -418,10 +418,11 @@ export function addOrUpdateBasicDic(param) {
})
}
export function getDictionaryChildList(id) {
export function getDictionaryChildList(data) {
return request({
url: `/Dictionary/getChildList/${id}`,
method: 'get'
url: `/Dictionary/getChildList`,
method: 'post',
data
})
}