'use client'; import { DeptTreeView } from '@/components/iam/DeptTreeView'; import { IamSectionCard } from '@/components/iam/IamSectionCard'; import { useApi } from '@/lib/hooks/use-api'; import { iamDept } from '@/lib/api/iam'; import type { DeptNode } from '@/lib/api/types/dept'; export default function IamDeptPage() { const { data, loading, error } = useApi(() => iamDept.tree()); return ( {loading ?

加载中…

: null} {error ?

{error}

: null} {!loading && !error && data ? : null}
); }