AssetManager.UniApp/pages.json
claw_bot 63335e9512 fix: 修正uview-plus路径为uni_modules方式
- main.js: @/uni_modules/uview-plus
- uni.scss: @/uni_modules/uview-plus/theme.scss
- pages.json easycom: @/uni_modules/uview-plus/components
- 移除vite.config.js optimizeDeps配置
2026-03-13 03:19:36 +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-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue"
}
}
}