import { ref } from 'vue' import type { TreeNodeData } from '@arco-design/web-vue' import { listDeptTree } from '@/apis' /** 部门模块 */ export function useDept(options?: { onSuccess?: () => void }) { const loading = ref(false) const deptList = ref([]) const getDeptList = async (name?: string) => { try { loading.value = true const res = await listDeptTree({ description: name }) deptList.value = res.data options?.onSuccess && options.onSuccess() } finally { loading.value = false } } return { deptList, getDeptList, loading } }