index.ts 176 B

123456789101112
  1. import { Role } from '@/types/userinfo';
  2. interface Props {
  3. role: Role;
  4. }
  5. /**
  6. * 查询管理员列表
  7. */
  8. export const queryAdminList = (_data: Props) => {
  9. return [];
  10. };