import React from 'react'; import { Card, Layout, Menu, Typography, Row, Col, Statistic } from 'antd'; import { DashboardOutlined, ShoppingOutlined, UserOutlined, TruckOutlined, AuditOutlined, AlertOutlined, FileTextOutlined, DollarOutlined, BarChartOutlined } from '@ant-design/icons'; import { Link } from 'umi'; const { Header, Content, Sider } = Layout; const { Title, Text } = Typography; const Dashboard: React.FC = () => { const menuItems = [ { key: 'dashboard', icon: , label: 首页 }, { key: 'products', icon: , label: 商品管理 }, { key: 'orders', icon: , label: 订单管理 }, { key: 'merchants', icon: , label: 商户管理 }, { key: 'logistics', icon: , label: 物流管理 }, { key: 'aftersales', icon: , label: 售后服务 }, { key: 'compliance', icon: , label: 合规管理 }, { key: 'blacklist', icon: , label: 黑名单管理 }, { key: 'b2b', icon: , label: B2B贸易 }, { key: 'ads', icon: , label: 广告管理 } ]; return (
Crawlful Hub 管理系统
系统概览
欢迎使用 Crawlful Hub 管理系统,这是一个集商品管理、订单处理、商户管理、物流管理、售后服务、合规管理等功能于一体的综合管理平台。
); }; export default Dashboard;