Merge remote-tracking branch 'origin/stat' into stat

This commit is contained in:
86182
2022-10-09 19:44:28 +08:00
36 changed files with 4435 additions and 5240 deletions

View File

@@ -21,8 +21,14 @@ const treeList = function (query) {
const listByParent = function (parentId) {
return ajax.get('/xboe/org/list-by-parent?parentId='+parentId);
}
export default {
treeList,
listByParent
const getSimple = function (id) {
return ajax.get('/xboe/org/simple?id='+id);
}
export default {
treeList,
listByParent,
getSimple
}