Zlpt_Portal_h5/src/pages.json

113 lines
3.1 KiB
JSON
Raw Normal View History

2024-12-13 15:30:11 +08:00
{
"pages": [
//pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/index",
"style": {
"navigationBarTitleText": "登录"
}
},
// 首页
2024-12-13 15:30:11 +08:00
{
"path": "pages/index/index",
"style": {
"navigationStyle": "custom"
2024-12-13 15:30:11 +08:00
}
},
// 租赁需求大厅
2024-12-13 15:30:11 +08:00
{
"path": "pages/lease-demand/index",
"style": {
"navigationStyle": "custom"
}
},
// 需求发布
{
"path": "pages/demand-release/index",
"style": {
"navigationStyle": "custom"
2024-12-13 15:30:11 +08:00
}
},
{
"path": "pages/cart/index",
"style": {
"navigationBarTitleText": "预约车"
}
},
{
"path": "pages/message/index",
"style": {
"navigationBarTitleText": "消息"
}
},
{
"path": "pages/my/index",
"style": {
"navigationBarTitleText": "我的"
}
},
{
"path": "pages/goods-details/index",
"style": {
"navigationBarTitleText": "装备详情"
}
},
{
"path": "pages/order/index",
"style": {
"navigationBarTitleText": "订单结算"
}
},
// 装备列表大厅
{
"path": "pages/goods-list/index",
"style": {
"navigationStyle": "custom"
}
2024-12-13 15:30:11 +08:00
}
],
"tabBar": {
"color": "#2c2c2c",
"selectedColor": "#00ad9d",
"borderStyle": "black",
"backgroundColor": "#FFFFFF",
"iconWidth": "24px",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "static/tab-bar/home_sel.png"
},
{
"pagePath": "pages/lease-demand/index",
"text": "租赁需求",
"iconPath": "static/tab-bar/lease.png",
"selectedIconPath": "static/tab-bar/lease_sel.png"
},
{
"pagePath": "pages/cart/index",
"text": "预约车",
"iconPath": "static/tab-bar/car.png",
"visible": false
},
{
"pagePath": "pages/message/index",
"text": "消息",
"iconPath": "static/tab-bar/message.png"
},
{
"pagePath": "pages/my/index",
"text": "我的",
"iconPath": "static/tab-bar/user.png",
"selectedIconPath": "static/tab-bar/user_sel.png"
}
]
},
2024-12-13 15:30:11 +08:00
"globalStyle": {
"navigationBarTextStyle": "#fff",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#00a288",
"backgroundColor": "#00a288"
2024-12-13 15:30:11 +08:00
}
}