- 添加uni-ui组件库依赖 - 实现微信静默登录功能 - 创建资产、策略、我的等核心页面 - 添加策略组合配置功能 - 实现持仓详情展示 - 完善用户信息展示 - 添加全局样式和工具类 - 配置小程序项目设置
72 lines
1.5 KiB
JSON
72 lines
1.5 KiB
JSON
{
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/index/index",
|
||
"style": {
|
||
"navigationBarTitleText": "资产"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/strategies/strategies",
|
||
"style": {
|
||
"navigationBarTitleText": "策略库"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/me/me",
|
||
"style": {
|
||
"navigationBarTitleText": "我的"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/detail/detail",
|
||
"style": {
|
||
"navigationBarTitleText": ""
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/config/config",
|
||
"style": {
|
||
"navigationBarTitleText": "添加组合"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/strategies/edit/edit",
|
||
"style": {
|
||
"navigationBarTitleText": ""
|
||
}
|
||
}
|
||
],
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "white",
|
||
"navigationBarTitleText": "Asset Manager",
|
||
"navigationBarBackgroundColor": "#0D4536",
|
||
"backgroundColor": "#F3F4F6"
|
||
},
|
||
"tabBar": {
|
||
"color": "#9CA3AF",
|
||
"selectedColor": "#0D4536",
|
||
"backgroundColor": "#FFFFFF",
|
||
"borderStyle": "black",
|
||
"list": [{
|
||
"pagePath": "pages/index/index",
|
||
"text": "资产",
|
||
"iconPath": "/static/home.png",
|
||
"selectedIconPath": "static/home.png"
|
||
},
|
||
{
|
||
"pagePath": "pages/strategies/strategies",
|
||
"text": "策略",
|
||
"iconPath": "/static/puzzle.png",
|
||
"selectedIconPath": "/static/puzzle.png"
|
||
},
|
||
{
|
||
"pagePath": "pages/me/me",
|
||
"text": "我的",
|
||
"iconPath": "/static/profile_circled.png",
|
||
"selectedIconPath": "/static/profile_circled.png"
|
||
}
|
||
]
|
||
},
|
||
"uniIdRouter": {}
|
||
} |