{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/index/index", "style": { "navigationBarTitleText": "校园综合服务平台" } }, { "path" : "pages/orders/orders", "style" : { "navigationBarTitleText" : "订 单", "enablePullDownRefresh" : false } }, { "path" : "pages/me/me", "style" : { "navigationBarTitleText" : "我 的", "enablePullDownRefresh" : false } }, { "path" : "pages/login/login", "style" : { "navigationBarTitleText" : "登 录" } }, { "path" : "pages/register/register", "style" : { "navigationBarTitleText" : "注 册" } }, { "path" : "pages/preOrder/preOrder", "style" : { "navigationBarTitleText" : "下单" } }, { "path" : "pages/address/address", "style" : { "navigationBarTitleText" : "我的地址" } }, { "path" : "pages/detail/detail", "style" : { "navigationBarTitleText" : "订单详情" } }, { "path" : "pages/introduce/introduce", "style" : { "navigationBarTitleText" : "平台介绍" } }, { "path" : "pages/agreement/agreement", "style" : { "navigationBarTitleText" : "用户协议" } }, { "path" : "pages/person/person", "style" : { "navigationBarTitleText" : "个人介绍" } }, { "path" : "pages/certification/certification", "style" : { "navigationBarTitleText" : "骑手认证" } }, { "path" : "pages/acceptOrders/acceptOrders", "style" : { "navigationBarTitleText" : "骑手订单" } }, { "path" : "pages/records/records", "style" : { "navigationBarTitleText" : "收支明细" } }, { "path" : "pages/wallet/wallet", "style" : { "navigationBarTitleText" : "钱 包" } }, { "path" : "pages/charge/charge", "style" : { "navigationBarTitleText" : "充 值" } }, { "path" : "pages/comment/comment", "style" : { "navigationBarTitleText" : "订单评价" } }, { "path" : "pages/myComment/myComment", "style" : { "navigationBarTitleText" : "评价中心" } } ], "globalStyle": { // 导航栏标题颜色及状态栏前景颜色,仅支持 black/white "navigationBarTextStyle": "white", // 导航栏标题文字内容 "navigationBarTitleText": "校园综合服务平台", // 导航栏背景颜色(同状态栏背景色) "navigationBarBackgroundColor": "#006eff", // 下拉显示出来的窗口的背景色 "backgroundColor": "#F8F8F8" }, //底部导航菜单 "tabBar": { "backgroundColor": "#fff", "selectedColor": "#006eff", "color": "#666", "list": [ { "iconPath": "/static/icons/home.png", "selectedIconPath": "static/icons/home-active.png", "text": "首页", "pagePath": "pages/index/index" }, { "iconPath": "/static/icons/orders.png", "selectedIconPath": "static/icons/orders-active.png", "text": "订单", "pagePath": "pages/orders/orders" }, { "iconPath": "/static/icons/me.png", "selectedIconPath": "static/icons/me-active.png", "text": "我的", "pagePath": "pages/me/me" } ] }, "uniIdRouter": {} }