18f534bbd6
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Validate - Code Quality (push) Successful in 5m15s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 2m3s
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 2m22s
CI/CD Pipeline / Unit Tests (push) Successful in 7m55s
CI/CD Pipeline / Integration Tests (push) Successful in 3m4s
CI/CD Pipeline / Frontend Lint (push) Has been skipped
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 1m42s
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Build Staging API Image (push) Successful in 19m15s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 2m35s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 8m9s
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 1m38s
CI/CD Pipeline / Staging E2E Tests (push) Blocked by required conditions
CI/CD Pipeline / Staging API Integration Tests (push) Blocked by required conditions
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / ACR Image Cleanup (push) Blocked by required conditions
CI/CD Pipeline / Canary Release to Production (push) Blocked by required conditions
CI/CD Pipeline / CI Gate (push) Has been skipped
Co-authored-by: xiaoxia <dev@xiaoxiajianji.com> Co-committed-by: xiaoxia <dev@xiaoxiajianji.com>
28 lines
1001 B
TypeScript
28 lines
1001 B
TypeScript
/** 路由 → 标题映射(用于自动生成面包屑) */
|
|
export const ROUTE_TITLE_MAP: Record<string, string> = {
|
|
"/app/dashboard": "首页",
|
|
"/app/generate": "智能剪辑",
|
|
"/app/assets": "视频库",
|
|
"/app/voices": "配音库",
|
|
"/app/titles": "标题库",
|
|
"/app/products": "成片库",
|
|
"/app/templates": "模板库",
|
|
"/app/history": "任务历史",
|
|
"/app/admin": "控制台",
|
|
"/app/admin/users": "用户管理",
|
|
"/app/admin/analytics": "数据分析",
|
|
"/app/admin/monitor": "系统监控",
|
|
"/app/admin/logs": "系统日志",
|
|
"/app/subscription": "订阅管理",
|
|
"/app/subscription/upgrade": "升级订阅",
|
|
"/app/subscription/billing": "账单管理",
|
|
"/app/profile": "个人设置",
|
|
"/app/editing-planner": "模板制作",
|
|
"/app/my-templates": "我的模板",
|
|
"/app/voice-clone": "我的音色",
|
|
"/app/voice-materials": "配音库",
|
|
"/app/accounts": "账号管理",
|
|
"/app/duplication": "查重",
|
|
"/app/duplication/results": "查重结果",
|
|
}
|