{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/login/index", "style": { "navigationBarTitleText": "登录" } }, // 首页 { "path": "pages/index/index", "style": { "navigationStyle": "custom" } }, // 租赁需求大厅 { "path": "pages/lease-demand/index", "style": { "navigationStyle": "custom" } }, // 需求发布 { "path": "pages/demand-release/index", "style": { "navigationStyle": "custom" } }, // 需求详情 { "path": "pages/demand-details/index", "style": { "navigationStyle": "custom" } }, // 预约车 { "path": "pages/cart/index", "style": { "navigationStyle": "custom" } }, { "path": "pages/message/index", "style": { "navigationBarTitleText": "消息" } }, // 个人中心 { "path": "pages/my/index", "style": { "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" } }, // 装备详情 { "path": "pages/goods-details/index", "style": { "navigationStyle": "custom" } }, // 订单结算 { "path": "pages/order/index", "style": { "navigationStyle": "custom" } }, // 订单列表详情 { "path": "pages/order-details/index", "style": { "navigationStyle": "custom" } }, // 订单减免 { "path": "pages/order-reduction/index", "style": { "navigationStyle": "custom" } }, // 装备列表大厅 { "path": "pages/goods-list/index", "style": { "navigationStyle": "custom" } } ], "tabBar": { "color": "#2c2c2c", "selectedColor": "#00ad9d", "borderStyle": "black", "backgroundColor": "#FFFFFF", "iconWidth": "24px", "list": [ { "pagePath": "pages/index/index", "text": "首页", "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", "selectedIconPath": "static/tab-bar/car_sel.png", "visible": false }, { "pagePath": "pages/message/index", "text": "消息", "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" } ] }, "globalStyle": { "navigationBarTextStyle": "#fff", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#00a288", "backgroundColor": "#00a288" } }