123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/my/my",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/home/home",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/order/order",
- "style": {
- "navigationBarTitleText": "我的订单",
- "enablePullDownRefresh": true
- }
- }
- ],
- "tabBar": {
- "selectedColor": "#a09cc4",
- "list": [{
- "pagePath": "pages/home/home",
- "text": "首页",
- "iconPath": "static/home.png",
- "selectedIconPath": "static/home_selected.png"
- },
- {
- "pagePath": "pages/order/order",
- "text": "订单",
- "iconPath": "static/order.png",
- "selectedIconPath": "static/order_selected.png"
- },
- {
- "pagePath": "pages/my/my",
- "text": "我的",
- "iconPath": "static/my.png",
- "selectedIconPath": "static/my_selected.png"
- }
- ]
- },
- "subPackages": [{
- "root": "subpkg",
- "pages": [{
- "path": "protocol/protocol",
- "style": {
- "navigationBarTitleText": "使用须知"
- }
- },
- {
- "path": "extend/extend",
- "style": {
- "navigationBarTitleText": "我的订单"
- }
- },
- {
- "path": "myAccount/myAccount",
- "style": {
- "navigationBarTitleText": "我的账户"
- }
- },
- {
- "path": "updateUserInfo/updateUserInfo",
- "style": {
- "navigationBarTitleText": "修改个人信息"
- }
- },
- {
- "path": "selectHotel/selectHotel",
- "style": {
- "navigationBarTitleText": "酒店选择"
- }
- },
- {
- "path": "emergencyKey/emergencyKey",
- "style": {
- "navigationBarTitleText": "手机开门"
- }
- },
- {
- "path": "elevatorControl/elevatorControl",
- "style": {
- "navigationBarTitleText": "梯控二维码"
- }
- }
- ]
- }, {
- "root": "subpkg_checkin",
- "pages": [{
- "path": "selectCheckinType/selectCheckinType",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "selectRoomType/selectRoomType",
- "style": {
- "navigationBarTitleText": "房源类型"
- }
- },
- {
- "path": "selectRoom/selectRoom",
- "style": {
- "navigationBarTitleText": "房间选择"
- }
- },
- {
- "path": "addGuest/addGuest",
- "style": {
- "navigationBarTitleText": "身份信息录入"
- }
- },
- {
- "path": "confirmOrder/confirmOrder",
- "style": {
- "navigationBarTitleText": "订单确认"
- }
- },
- {
- "path": "depositPayment/depositPayment",
- "style": {
- "navigationBarTitleText": "支付页面"
- }
- },
- {
- "path": "checkin/checkin",
- "style": {
- "navigationBarTitleText": "支付结果"
- }
- }
- ]
- }],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#a09cc4"
- },
- "uniIdRouter": {},
- "lazyCodeLoading": "requiredComponents"
- }
|