import { useEffect, useState } from 'react';
import { Outlet, useLocation, useNavigate } from 'react-router-dom';
import { Layout, Menu, Typography, Button, Space } from 'antd';
import type { MenuProps } from 'antd';
import {
DashboardOutlined,
UserOutlined,
ShoppingOutlined,
ShopOutlined,
TeamOutlined,
GiftOutlined,
CarOutlined,
SafetyOutlined,
LogoutOutlined,
} from '@ant-design/icons';
import { clearAuth, request, type HqProfile } from '../lib/api';
const { Header, Sider, Content } = Layout;
const MENU_ITEMS: MenuProps['items'] = [
{ key: '/', icon: , label: '概览' },
{ key: '/users', icon: , label: '用户' },
{ key: '/orders', icon: , label: '订单' },
{
key: 'stores-group',
icon: ,
label: '门店',
children: [
{ key: '/stores', label: '门店列表' },
{ key: '/store-accounts', label: '门店账户' },
{ key: '/store-media', label: '门店资源' },
],
},
{
key: 'partners-group',
icon: ,
label: '开城',
children: [
{ key: '/partners', label: '开城合伙人' },
{ key: '/cities', label: '开城城市' },
{ key: '/partner-accounts', label: '开城合伙人账户' },
],
},
{
key: 'benefit-group',
icon: ,
label: '好客权益',
children: [
{ key: '/benefit/coupons', label: '权益券' },
{ key: '/benefit/ledgers', label: '流水' },
{ key: '/redeem-records', label: '核销记录' },
],
},
{ key: '/deliveries', icon: , label: '配送单' },
{ key: '/hq-accounts', icon: , label: 'HQ账户' },
];
export default function AdminLayout() {
const navigate = useNavigate();
const location = useLocation();
const [profile, setProfile] = useState(null);
useEffect(() => {
request('/admin/auth/me').then(setProfile).catch(() => {});
}, []);
function logout() {
clearAuth();
navigate('/login');
}
const selectedKey = location.pathname;
return (
杜康 HQ
管理后台
{profile?.name || '—'}
{profile?.adminRole}
} onClick={logout}>
退出
);
}