Zlpt_Portal_h5/src/pages.json

156 lines
4.3 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
}
},
2024-12-20 21:37:18 +08:00
// 需求详情
{
"path": "pages/demand-details/index",
"style": {
"navigationStyle": "custom"
}
},
2024-12-20 14:23:43 +08:00
// 预约车
2024-12-13 15:30:11 +08:00
{
"path": "pages/cart/index",
"style": {
2024-12-20 14:23:43 +08:00
"navigationStyle": "custom"
2024-12-13 15:30:11 +08:00
}
},
2024-12-21 17:24:36 +08:00
2024-12-13 15:30:11 +08:00
{
"path": "pages/message/index",
"style": {
"navigationBarTitleText": "消息"
}
},
2024-12-21 17:24:36 +08:00
// 个人中心
2024-12-13 15:30:11 +08:00
{
"path": "pages/my/index",
"style": {
2024-12-21 17:24:36 +08:00
"navigationStyle": "custom"
}
},
// 个人中心 -- 设置
{
"path": "pages/my-setting/index",
"style": {
"navigationStyle": "custom"
}
},
// 个人中心 -- 账户与安全
{
"path": "pages/my-account/index",
"style": {
"navigationStyle": "custom"
}
},
// 个人中心 -- 账户与安全
{
"path": "pages/my-info/index",
"style": {
"navigationStyle": "custom"
2024-12-13 15:30:11 +08:00
}
},
2024-12-20 14:23:43 +08:00
// 装备详情
{
"path": "pages/goods-details/index",
"style": {
2024-12-20 14:23:43 +08:00
"navigationStyle": "custom"
}
},
2024-12-20 14:23:43 +08:00
// 订单结算
{
"path": "pages/order/index",
"style": {
2024-12-20 14:23:43 +08:00
"navigationStyle": "custom"
}
},
2024-12-21 17:24:36 +08:00
// 订单列表详情
{
"path": "pages/order-details/index",
"style": {
"navigationStyle": "custom"
}
},
// 装备列表大厅
{
"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": "首页",
2024-12-20 14:23:43 +08:00
"iconPath": "static/tab-bar/home.png",
"selectedIconPath": "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",
2024-12-20 14:23:43 +08:00
"selectedIconPath": "static/tab-bar/car_sel.png",
"visible": false
},
{
"pagePath": "pages/message/index",
"text": "消息",
2024-12-20 14:23:43 +08:00
"iconPath": "static/tab-bar/message.png",
"selectedIconPath": "static/tab-bar/message_sel.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
}
}