落地输入合规、探索题库、报告日/时辰刷新、账号头像、OEJTS 量表,并补齐 H5 埋点与 Admin 漏斗;同步 ESS 工件、切至自建 Git、清理 GitHub Actions。 Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
933 B
TypeScript
21 lines
933 B
TypeScript
import type { HomeToolIconName } from '../components/HomeToolIcon.vue'
|
|
|
|
export type MineNavItem = { to: string; label: string; icon: HomeToolIconName }
|
|
|
|
export const mineGroupArchive: MineNavItem[] = [
|
|
{ to: '/profile', label: '个人档案', icon: 'portrait' },
|
|
{ to: '/reports', label: '我的成长报告', icon: 'reports' },
|
|
{ to: '/portrait', label: '愈心解码', icon: 'portrait' },
|
|
{ to: '/star', label: '星象性格', icon: 'star' },
|
|
{ to: '/rhythm', label: '身心节律', icon: 'rhythm' },
|
|
{ to: '/cards', label: '意象卡片', icon: 'cards' },
|
|
]
|
|
|
|
export const mineGroupGrowth: MineNavItem[] = [
|
|
{ to: '/relation', label: '人格匹配', icon: 'relation' },
|
|
{ to: '/ask', label: 'AI 成长助手', icon: 'ask' },
|
|
{ to: '/explore', label: '探索测试', icon: 'mbti' },
|
|
{ to: '/growth-plan', label: '成长计划', icon: 'growth' },
|
|
{ to: '/membership', label: '成长会员', icon: 'growth' },
|
|
]
|