- 下拉刷新:index / strategies / me / detail 四个页面 - 上拉加载:detail 交易记录分页加载 - 空状态优化:index / strategies / detail 空状态提示 - pages.json 开启 enablePullDownRefresh 功能细节: - onPullDownRefresh / onReachBottom 生命周期 - 交易记录分页逻辑(logPage / logHasMore / logLoading) - 加载状态提示
87 lines
1.8 KiB
JSON
Executable File
87 lines
1.8 KiB
JSON
Executable File
{
|
|
"pages": [
|
|
{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationBarTitleText": "资产",
|
|
"enablePullDownRefresh": true,
|
|
"backgroundTextStyle": "dark"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/strategies/strategies",
|
|
"style": {
|
|
"navigationBarTitleText": "策略库",
|
|
"enablePullDownRefresh": true,
|
|
"backgroundTextStyle": "dark"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/me/me",
|
|
"style": {
|
|
"navigationBarTitleText": "我的",
|
|
"enablePullDownRefresh": true,
|
|
"backgroundTextStyle": "dark"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/detail/detail",
|
|
"style": {
|
|
"navigationBarTitleText": "",
|
|
"enablePullDownRefresh": true,
|
|
"backgroundTextStyle": "dark"
|
|
}
|
|
},
|
|
{
|
|
"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": {},
|
|
"easycom": {
|
|
"autoscan": true,
|
|
"custom": {
|
|
"^u-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue"
|
|
}
|
|
}
|
|
}
|