feat(agency): 优化审核台列表页并新增申诉处理功能

审核台列表页优化:
- 每个任务项显示文件名、文件大小
- 添加下载按钮支持文件下载
- 点击"审核"按钮才跳转到详情页
- 按风险等级显示不同颜色的状态标签和按钮

新增申诉处理功能:
- 申诉列表页:展示所有达人申诉,支持搜索和状态筛选
- 申诉详情页:查看申诉内容、附件、原审核问题
- 处理决策面板:通过/驳回申诉并填写处理意见
- 侧边栏添加"申诉处理"菜单入口

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Your Name
2026-02-06 15:54:53 +08:00
co-authored by Claude Opus 4.5
parent 576c89c8c4
commit 66748d4f19
4 changed files with 815 additions and 44 deletions
+3 -1
View File
@@ -16,7 +16,8 @@ import {
FolderKanban,
PlusCircle,
ClipboardCheck,
Bot
Bot,
MessageSquare
} from 'lucide-react'
import { cn } from '@/lib/utils'
@@ -37,6 +38,7 @@ const creatorNavItems: NavItem[] = [
const agencyNavItems: NavItem[] = [
{ icon: LayoutDashboard, label: '工作台', href: '/agency' },
{ icon: Scan, label: '审核台', href: '/agency/review' },
{ icon: MessageSquare, label: '申诉处理', href: '/agency/appeals' },
{ icon: FileText, label: 'Brief 配置', href: '/agency/briefs' },
{ icon: Users, label: '达人管理', href: '/agency/creators' },
{ icon: BarChart3, label: '数据报表', href: '/agency/reports' },