Home > ILIB_ExtendLibraryFunctions > getClassificationTree
ILIB_ExtendLibraryFunctions.getClassificationTree property
获取分类树
签名
typescript
getClassificationTree: () =>
Promise<
Array<{
name: string;
uuid?: string;
children?:
| Array<{
name: string;
uuid?: string;
}>
| undefined;
}>
>;1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13