work_order/pages.json

51 lines
1.0 KiB
JSON
Raw Normal View History

2024-01-07 14:26:19 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
2024-01-11 19:12:26 +08:00
{
2024-01-07 14:26:19 +08:00
"path": "pages/index/index",
"style": {
2024-01-11 19:12:26 +08:00
"navigationBarTitleText": "定位"
2024-01-07 14:26:19 +08:00
}
},
{
"path" : "pages/test/test",
"style" :
{
2024-01-11 19:12:26 +08:00
"navigationBarTitleText" : "我的",
2024-01-07 14:26:19 +08:00
"enablePullDownRefresh" : false
}
2024-01-10 18:12:55 +08:00
},
2024-01-11 19:12:26 +08:00
{
"path" : "pages/login/login",
"style" :
{
"navigationBarTitleText" : "登录",
"enablePullDownRefresh" : false,
"transparentTitle": "always"
}
}
2024-01-07 14:26:19 +08:00
],
"tabBar": {
"color": "#333",
"selectedColor": "#0074e8",
"borderStyle": "white",
"backgroundColor": "#eee",
"list": [
{
"pagePath": "pages/index/index",
2024-01-11 19:12:26 +08:00
"text": "首页"
2024-01-07 14:26:19 +08:00
},
{
"pagePath": "pages/test/test",
2024-01-11 19:12:26 +08:00
"text": "我的"
2024-01-07 14:26:19 +08:00
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "工单系统",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {}
}