Build OrbitFlow frontend admin template

This commit is contained in:
Codex
2026-08-07 13:53:40 +08:00
commit 8322800b57
19 changed files with 11340 additions and 0 deletions

88
app/data/mock-data.json Normal file
View File

@@ -0,0 +1,88 @@
{
"stats": [
{ "label": "进行中项目", "value": "24", "change": "+12%", "tone": "blue" },
{ "label": "今日待办", "value": "18", "change": "6 项已完成", "tone": "orange" },
{ "label": "团队成员", "value": "42", "change": "+3 本月", "tone": "green" },
{ "label": "按时完成率", "value": "92%", "change": "+4.2%", "tone": "purple" }
],
"projects": [
{
"id": 1,
"title": "新版工作台视觉升级",
"description": "统一后台设计语言,完成核心业务页面的组件迁移。",
"image": "https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=320&q=80",
"tag": "设计系统",
"status": "进行中",
"progress": 72,
"owner": "林知夏",
"date": "08-18"
},
{
"id": 2,
"title": "客户数据看板重构",
"description": "优化指标层级与筛选效率,支持多角色查看。",
"image": "https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=320&q=80",
"tag": "数据产品",
"status": "评审中",
"progress": 48,
"owner": "周屿",
"date": "08-22"
},
{
"id": 3,
"title": "会员增长自动化",
"description": "搭建触达策略与任务编排,验证首批增长实验。",
"image": "https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=320&q=80",
"tag": "增长实验",
"status": "待开始",
"progress": 16,
"owner": "许言",
"date": "08-28"
}
],
"board": [
{
"id": "todo",
"title": "待处理",
"color": "#8a94a6",
"cards": [
{ "id": "K-1024", "title": "补充移动端导航规范", "tag": "设计", "priority": "普通", "owner": "林知夏", "due": "今天" },
{ "id": "K-1025", "title": "整理季度复盘数据", "tag": "运营", "priority": "紧急", "owner": "许言", "due": "08-09" },
{ "id": "K-1026", "title": "确认新用户引导文案", "tag": "内容", "priority": "普通", "owner": "陈序", "due": "08-11" }
]
},
{
"id": "doing",
"title": "进行中",
"color": "#3276f6",
"cards": [
{ "id": "K-1019", "title": "后台筛选器交互优化", "tag": "研发", "priority": "紧急", "owner": "周屿", "due": "今天" },
{ "id": "K-1021", "title": "建立组件使用示例库", "tag": "设计", "priority": "普通", "owner": "林知夏", "due": "08-10" }
]
},
{
"id": "review",
"title": "待验收",
"color": "#8b5cf6",
"cards": [
{ "id": "K-1015", "title": "成员权限配置页面", "tag": "研发", "priority": "普通", "owner": "唐可", "due": "08-08" },
{ "id": "K-1017", "title": "活动落地页数据埋点", "tag": "数据", "priority": "普通", "owner": "许言", "due": "08-09" }
]
},
{
"id": "done",
"title": "已完成",
"color": "#20a26a",
"cards": [
{ "id": "K-1008", "title": "工作台首屏性能优化", "tag": "研发", "priority": "普通", "owner": "周屿", "due": "08-06" },
{ "id": "K-1011", "title": "八月内容排期确认", "tag": "内容", "priority": "普通", "owner": "陈序", "due": "08-05" }
]
}
],
"schedules": [
{ "id": 1, "name": "每日经营数据汇总", "type": "数据同步", "cron": "0 9 * * *", "frequency": "每天 09:00", "lastRun": "今天 09:00", "nextRun": "明天 09:00", "enabled": true, "success": 98 },
{ "id": 2, "name": "会员到期提醒", "type": "消息通知", "cron": "0 10 * * 1-5", "frequency": "工作日 10:00", "lastRun": "今天 10:00", "nextRun": "明天 10:00", "enabled": true, "success": 100 },
{ "id": 3, "name": "周度报表归档", "type": "文件归档", "cron": "0 18 * * 5", "frequency": "每周五 18:00", "lastRun": "08-01 18:00", "nextRun": "08-08 18:00", "enabled": true, "success": 96 },
{ "id": 4, "name": "测试数据清理", "type": "系统维护", "cron": "0 2 1 * *", "frequency": "每月 1 日 02:00", "lastRun": "08-01 02:00", "nextRun": "09-01 02:00", "enabled": false, "success": 100 }
]
}