sync: soul-admin 前端 | 原因: 前端代码修改

This commit is contained in:
卡若
2026-03-08 09:11:52 +08:00
parent fc6c96917b
commit 90e5490888

View File

@@ -3,14 +3,11 @@ import { Outlet, Link, useLocation, useNavigate } from 'react-router-dom'
import { import {
LayoutDashboard, LayoutDashboard,
Users, Users,
CreditCard,
Settings, Settings,
LogOut, LogOut,
Wallet, Wallet,
BookOpen, BookOpen,
GitMerge, GitMerge,
Crown,
GraduationCap,
ChevronDown, ChevronDown,
ChevronUp, ChevronUp,
} from 'lucide-react' } from 'lucide-react'
@@ -23,13 +20,10 @@ const primaryMenuItems = [
{ icon: BookOpen, label: '内容管理', href: '/content' }, { icon: BookOpen, label: '内容管理', href: '/content' },
{ icon: Users, label: '用户管理', href: '/users' }, { icon: Users, label: '用户管理', href: '/users' },
] ]
// 折叠区「更多」(字典类 + 业务) // 折叠区「更多」(业务模块
const moreMenuItems = [ const moreMenuItems = [
{ icon: GitMerge, label: '找伙伴', href: '/find-partner' }, { icon: GitMerge, label: '找伙伴', href: '/find-partner' },
{ icon: Crown, label: 'VIP 角色', href: '/vip-roles' },
{ icon: GraduationCap, label: '导师管理', href: '/mentors' },
{ icon: Wallet, label: '推广中心', href: '/distribution' }, { icon: Wallet, label: '推广中心', href: '/distribution' },
{ icon: CreditCard, label: '推广设置', href: '/referral-settings' },
] ]
export function AdminLayout() { export function AdminLayout() {