AssetManager.UniApp/pages.json
claw_bot 7034a55c32 fix: 切换回uview-plus以兼容Vue3
- 卸载uview-ui 2.0 (仅支持Vue2)
- 安装uview-plus 3.7.13 (Vue3兼容版)
- 更新main.js导入为uview-plus
- 更新uni.scss样式引入路径
- 更新pages.json easycom配置
- 更新vite.config.js optimizeDeps
2026-03-13 03:13:56 +00:00

78 lines
1.6 KiB
JSON
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"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": {},
"easycom": {
"autoscan": true,
"custom": {
"^u-(.*)": "uview-plus/components/u-$1/u-$1.vue"
}
}
}