大小写

This commit is contained in:
2026-01-27 14:04:37 +08:00
parent 535fb734ea
commit 3540f51429
10 changed files with 85 additions and 15 deletions

View File

@@ -242,9 +242,9 @@ const DepListForm: React.FC = () => {
);
};
const Dep = () => (
const Dept = () => (
<PageContainerPlugin breadcrumb={['权限管理', '组织架构']}>
<DepListForm />
</PageContainerPlugin>
);
export default Dep;
export default Dept;

View File

@@ -14,7 +14,7 @@ import { AdminServices } from '@/services/AdminServices';
import { useAuthStore } from '@/store/AuthStore';
import { tableFixedByPhone, toArray } from '@/utils/common';
import { useRequest } from '@/utils/useRequest';
import AdminDepSelect from '../Dep/components/AdminDepSelect';
import AdminDepSelect from '../Dept/components/AdminDepSelect';
import AdminGrpSelect from '../Grp/components/AdminGrpSelect';
import { AdminEditModal, type IAdminEditModalType } from './components/AdminEditModal';