70 lines
3.0 KiB
JavaScript
70 lines
3.0 KiB
JavaScript
(function (global) {
|
|
"use strict";
|
|
|
|
const nav = {
|
|
entries: [
|
|
{ key: "market", title: "行情数据", subtitle: "情绪 · 梯队 · 题材 · 龙虎榜", icon: "bar-chart-3" },
|
|
{ key: "tools", title: "智能工具", subtitle: "智能选股 · 策略跟踪 · 问师", icon: "wand-2" },
|
|
{ key: "review", title: "我的复盘", subtitle: "自选 · 交易 · 复盘 · 笔记 · 提醒", icon: "notebook-pen" },
|
|
{ key: "assistant", title: "复盘助手", subtitle: "AI 对话复盘", icon: "message-square" },
|
|
{ key: "system", title: "系统管理", subtitle: "账号 · 密码 · 会员 · 设置", icon: "settings" }
|
|
],
|
|
|
|
hubs: {
|
|
market: {
|
|
title: "行情数据",
|
|
items: [
|
|
{ key: "market/sentiment", label: "情绪周期", icon: "activity" },
|
|
{ key: "market/limit-up", label: "涨停池", icon: "trending-up" },
|
|
{ key: "market/broken", label: "炸板池", icon: "zap" },
|
|
{ key: "market/limit-down", label: "跌停池", icon: "trending-down" },
|
|
{ key: "market/yesterday", label: "昨日涨停", icon: "history" },
|
|
{ key: "market/performance", label: "涨停表现", icon: "chart-line" },
|
|
{ key: "market/ladder", label: "市场天梯", icon: "layers" },
|
|
{ key: "market/rotation", label: "主题轮动", icon: "refresh-cw" },
|
|
{ key: "market/auction", label: "竞价", icon: "gavel" },
|
|
{ key: "market/themes", label: "题材库", icon: "book-open" },
|
|
{ key: "market/popularity", label: "人气榜", icon: "flame" },
|
|
{ key: "market/dragon", label: "龙虎榜", icon: "crown" }
|
|
]
|
|
},
|
|
tools: {
|
|
title: "智能工具",
|
|
items: [
|
|
{ key: "tools/screener", label: "智能选股", icon: "filter" },
|
|
{ key: "tools/tracking", label: "策略跟踪", icon: "target" },
|
|
{ key: "tools/mentor", label: "问师", icon: "bot" }
|
|
]
|
|
},
|
|
review: {
|
|
title: "我的复盘",
|
|
items: [
|
|
{ key: "review/watchlist", label: "自选股", icon: "star" },
|
|
{ key: "review/trades", label: "交易日志", icon: "scroll-text" },
|
|
{ key: "review/daily", label: "每日复盘", icon: "calendar-check" },
|
|
{ key: "review/notes", label: "个股笔记", icon: "sticky-note" },
|
|
{ key: "review/alerts", label: "提醒中心", icon: "bell" }
|
|
]
|
|
},
|
|
system: {
|
|
title: "系统管理",
|
|
items: [
|
|
{ key: "system/profile", label: "账号资料", icon: "user" },
|
|
{ key: "system/password", label: "修改密码", icon: "lock" },
|
|
{ key: "system/membership", label: "会员状态", icon: "gem" },
|
|
{ key: "system/admin", label: "系统设置", icon: "sliders-horizontal", adminOnly: true },
|
|
{ key: "system/members", label: "会员管理", icon: "users", adminOnly: true }
|
|
]
|
|
}
|
|
},
|
|
|
|
tableDefaults: {
|
|
frozenColumns: ["name", "code"],
|
|
primaryColumns: [],
|
|
scrollColumns: []
|
|
}
|
|
};
|
|
|
|
global.MobileNav = nav;
|
|
})(window);
|