Files
aiot-uniapp/src/pages.json

65 lines
1.7 KiB
JSON
Raw Normal View History

{
"pages": [
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "我才是标题"
}
2024-01-03 17:09:44 +08:00
},
{
"path": "pages/throughout/index",
2024-01-03 17:09:44 +08:00
"style": {
"navigationBarTitleText": "通屏+下拉刷新+自定义导航栏",
"enablePullDownRefresh": true,
"backgroundColor": "#23c09c", // 这个背景色要与页面的.top-section的背景图差不多这样下拉刷新看起来才比较协调
2024-01-03 17:09:44 +08:00
"navigationStyle": "custom"
}
},
{
"path": "pages/my/index",
"style": {
"navigationBarTitleText": "我的"
}
}
],
"globalStyle": {
2024-01-03 10:55:45 +08:00
"navigationBarTextStyle": "white",
2024-01-03 21:32:21 +08:00
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"navigationBarTitleText": "vue3-uniapp"
},
2023-12-23 13:42:31 +08:00
"easycom": {
"autoscan": true,
"custom": {
2023-12-23 14:32:19 +08:00
"^Fly(.*)": "@/components/fly-$1/fly-$1.vue",
"^fly-(.*)": "@/components/fly-$1/fly-$1.vue",
2023-12-23 13:42:31 +08:00
"^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
}
},
"tabBar": {
"color": "#7A7E83",
2024-01-03 21:32:21 +08:00
"selectedColor": "blue",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"height": "50px",
"fontSize": "10px",
"iconWidth": "24px",
"spacing": "3px",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "static/tab-icons/extui.png",
"selectedIconPath": "static/tab-icons/extuiHL.png",
"text": "首页"
},
{
"pagePath": "pages/throughout/index",
"iconPath": "static/tab-icons/template.png",
"selectedIconPath": "static/tab-icons/templateHL.png",
"text": "通屏"
}
]
},
"subPackages": []
2023-12-21 15:26:15 +08:00
}