chore: register pages features APIs and data contracts

This commit is contained in:
leefer
2026-07-29 17:07:39 +08:00
parent 444f3c1556
commit 12c0f4777d
8 changed files with 866 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"schema_version": 1,
"roles": ["public", "authenticated", "member", "admin"],
"features": [
{"id": "health", "title": "健康检查", "access": "public", "data_scope": "system", "enabled": true},
{"id": "auth", "title": "账户认证", "access": "public", "data_scope": "user", "enabled": true},
{"id": "account", "title": "账户设置", "access": "authenticated", "data_scope": "user", "enabled": true},
{"id": "admin", "title": "系统管理", "access": "admin", "data_scope": "system", "enabled": true},
{"id": "market", "title": "市场总览", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "sentiment", "title": "情绪周期", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "pools", "title": "市场股池", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "ladder", "title": "市场天梯", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "rotation", "title": "板块轮动", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "auction", "title": "集合竞价", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "themes", "title": "题材库", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "popularity", "title": "人气热榜", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "dragon_tiger", "title": "龙虎榜", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "search", "title": "全局搜索", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "charts", "title": "行情图表", "access": "authenticated", "data_scope": "shared", "enabled": true},
{"id": "screener", "title": "智能选股", "access": "member", "data_scope": "mixed", "daily_llm_quota": true, "enabled": true},
{"id": "mentor", "title": "问师", "access": "member", "data_scope": "user", "daily_llm_quota": true, "enabled": true},
{"id": "heaven", "title": "问天", "access": "member", "data_scope": "user", "daily_llm_quota": true, "enabled": true},
{"id": "review", "title": "我的复盘", "access": "authenticated", "data_scope": "user", "enabled": true},
{"id": "alerts", "title": "提醒中心", "access": "authenticated", "data_scope": "user", "enabled": true}
]
}