完善树结构大数据量的展示

This commit is contained in:
lin
2025-11-11 14:23:45 +08:00
parent 01fa67fee6
commit 3e3a3c202f
4 changed files with 104 additions and 9 deletions

View File

@@ -16,15 +16,16 @@ export function add(data) {
data: data
})
}
export function getTreeList(params) {
const { query, parent, hasChannel } = params
export function getTreeList({ query, parent, hasChannel, page, count }) {
return request({
method: 'get',
url: `/api/group/tree/list`,
params: {
query: query,
parent: parent,
hasChannel: hasChannel
hasChannel: hasChannel,
page: page,
count: count
}
})
}