From f31a9b0430aa703460c0720e54fc4fc9226b720a Mon Sep 17 00:00:00 2001 From: mtvpls Date: Tue, 20 Jan 2026 15:14:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=8D=A2=E7=9B=B4=E6=92=AD=E5=9B=BE?= =?UTF-8?q?=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/admin/page.tsx | 3 ++- src/components/MobileBottomNav.tsx | 10 +++++----- src/components/Sidebar.tsx | 10 +++++----- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index 9252ef8..57757b2 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -33,6 +33,7 @@ import { ExternalLink, FileText, FolderOpen, + Globe, Mail, Palette, Settings, @@ -11318,7 +11319,7 @@ function AdminPageClient() { + } isExpanded={expandedTabs.webLive} onToggle={() => toggleTab('webLive')} diff --git a/src/components/MobileBottomNav.tsx b/src/components/MobileBottomNav.tsx index ef4a440..37f6b6a 100644 --- a/src/components/MobileBottomNav.tsx +++ b/src/components/MobileBottomNav.tsx @@ -2,7 +2,7 @@ 'use client'; -import { Cat, Clover, Film, FolderOpen, Home, Radio, Star, Tv, Users } from 'lucide-react'; +import { Cat, Clover, Film, FolderOpen, Globe, Home, Star, Tv, Users } from 'lucide-react'; import Link from 'next/link'; import { usePathname, useSearchParams } from 'next/navigation'; import { useEffect, useState } from 'react'; @@ -51,12 +51,12 @@ const MobileBottomNav = ({ activePath }: MobileBottomNavProps) => { href: '/douban?type=show', }, { - icon: Radio, + icon: Tv, label: '电视直播', href: '/live', }, { - icon: Radio, + icon: Globe, label: '网络直播', href: '/web-live', }, @@ -89,12 +89,12 @@ const MobileBottomNav = ({ activePath }: MobileBottomNavProps) => { href: '/douban?type=show', }, { - icon: Radio, + icon: Tv, label: '电视直播', href: '/live', }, { - icon: Radio, + icon: Globe, label: '网络直播', href: '/web-live', }, diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index 85ff0d7..afad341 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -2,7 +2,7 @@ 'use client'; -import { Cat, Clover, Film, FolderOpen, Home, Menu, Radio, Search, Star, Tv, Users } from 'lucide-react'; +import { Cat, Clover, Film, FolderOpen, Globe, Home, Menu, Search, Star, Tv, Users } from 'lucide-react'; import Link from 'next/link'; import { usePathname, useSearchParams } from 'next/navigation'; import { @@ -143,12 +143,12 @@ const Sidebar = ({ onToggle, activePath = '/' }: SidebarProps) => { href: '/douban?type=show', }, { - icon: Radio, + icon: Tv, label: '电视直播', href: '/live', }, { - icon: Radio, + icon: Globe, label: '网络直播', href: '/web-live', }, @@ -180,12 +180,12 @@ const Sidebar = ({ onToggle, activePath = '/' }: SidebarProps) => { href: '/douban?type=show', }, { - icon: Radio, + icon: Tv, label: '电视直播', href: '/live', }, { - icon: Radio, + icon: Globe, label: '网络直播', href: '/web-live', },