Files
monisuo/app/pages.json
sion 7694a34ade Initial commit: Monisuo - 虚拟货币模拟交易平台
功能模块:
- 用户注册/登录/KYC
- 资金账户/交易账户
- 实时行情/币种管理
- 即时交易/充提审核
- 管理后台

技术栈:
- 后端: SpringBoot 2.2.4 + MyBatis Plus
- 前端: uni-app x (Vue3 + UTS)
- 数据库: MySQL

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-21 20:52:33 +08:00

107 lines
2.8 KiB
JSON

{
"pages": [
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "模拟所",
"navigationBarBackgroundColor": "#1A1A2E",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/market/market",
"style": {
"navigationBarTitleText": "行情",
"navigationBarBackgroundColor": "#1A1A2E",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/trade/trade",
"style": {
"navigationBarTitleText": "交易",
"navigationBarBackgroundColor": "#1A1A2E",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/asset/asset",
"style": {
"navigationBarTitleText": "资产",
"navigationBarBackgroundColor": "#1A1A2E",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/mine/mine",
"style": {
"navigationBarTitleText": "我的",
"navigationBarBackgroundColor": "#1A1A2E",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录",
"navigationBarBackgroundColor": "#1A1A2E",
"navigationBarTextStyle": "white",
"navigationStyle": "custom"
}
},
{
"path": "pages/register/register",
"style": {
"navigationBarTitleText": "注册",
"navigationBarBackgroundColor": "#1A1A2E",
"navigationBarTextStyle": "white",
"navigationStyle": "custom"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "模拟所",
"navigationBarBackgroundColor": "#1A1A2E",
"backgroundColor": "#1A1A2E"
},
"tabBar": {
"color": "#666666",
"selectedColor": "#00D4AA",
"borderStyle": "black",
"backgroundColor": "#16213E",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "static/tabbar/home.png",
"selectedIconPath": "static/tabbar/home-active.png"
},
{
"pagePath": "pages/market/market",
"text": "行情",
"iconPath": "static/tabbar/market.png",
"selectedIconPath": "static/tabbar/market-active.png"
},
{
"pagePath": "pages/trade/trade",
"text": "交易",
"iconPath": "static/tabbar/trade.png",
"selectedIconPath": "static/tabbar/trade-active.png"
},
{
"pagePath": "pages/asset/asset",
"text": "资产",
"iconPath": "static/tabbar/asset.png",
"selectedIconPath": "static/tabbar/asset-active.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "static/tabbar/mine.png",
"selectedIconPath": "static/tabbar/mine-active.png"
}
]
}
}