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

This commit is contained in:
卡若
2026-03-08 10:06:19 +08:00
parent 240d5d4b21
commit 01d31709d5

View File

@@ -101,37 +101,6 @@ export function AdminLayout() {
</Link>
)
})}
<button
type="button"
onClick={() => setMoreExpanded(!moreExpanded)}
className="w-full flex items-center justify-between gap-3 px-4 py-3 text-gray-400 hover:bg-gray-700/50 hover:text-white rounded-lg transition-colors"
>
<span className="flex items-center gap-3">
{moreExpanded ? <ChevronUp className="w-5 h-5" /> : <ChevronDown className="w-5 h-5" />}
<span className="text-sm"></span>
</span>
</button>
{moreExpanded && (
<div className="space-y-1 pl-4">
{moreMenuItems.map((item) => {
const isActive = location.pathname === item.href
return (
<Link
key={item.href}
to={item.href}
className={`flex items-center gap-3 px-4 py-2 rounded-lg transition-colors ${
isActive
? 'bg-[#38bdac]/20 text-[#38bdac] font-medium'
: 'text-gray-400 hover:bg-gray-700/50 hover:text-white'
}`}
>
<item.icon className="w-5 h-5 shrink-0" />
<span className="text-sm">{item.label}</span>
</Link>
)
})}
</div>
)}
<div className="pt-4 mt-4 border-t border-gray-700/50">
<Link
to="/settings"