123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
-
- {
- "path" : "pages/index/index",
- "style" :
- {
- "navigationBarTitleText" : "选择停车场"
- }
- },
-
- {
- "path" : "pages/index/main/parkingDetails",
- "style" :
- {
-
-
- }
- },
-
-
-
- {
- "path" : "pages/index/center",
- "style" :
- {
- "navigationBarTitleText" : "个人中心"
- }
- }
-
-
- ],
- "preloadRule": {
- "pages/index/center": {
- "network": "all",
- "packages": ["pages/business","pages/mylock","pages/information"]
- }
- },
- "subPackages": [
- {
- "root": "pages/business",
- "pages": [
-
- {
- "path" : "lockInfo",
- "style" :
- {
-
- }
- },
- {
- "path" : "quickInfo",
- "style" :
- {
- "navigationBarTitleText" : "快捷停车"
-
- }
- }
-
- ]
- },
- {
- "root": "pages/information",
- "pages": [
- {
- "path" : "information",
- "style" :
- {
- "navigationBarTitleText" : "个人信息"
-
- }
- },
-
-
- {
- "path" : "cropImage",
- "style" : {
- "navigationBarTitleText" : "裁剪头像"
- }
- },
- {
- "path" : "parkingRecord",
- "style" :
- {
- "navigationBarTitleText" : "停车记录"
-
- }
- },
- {
- "path" : "parkingInfo",
- "style" :
- {
- "navigationBarTitleText" : "停车记录"
- }
- }
- ]
- },
- {
- "root": "pages/mylock",
- "pages": [
- {
- "path" : "myLock",
- "style" :
- {
- "navigationBarTitleText" : "我的地锁"
-
- }
- },
- {
- "path" : "bindLock",
- "style" :
- {
- "navigationBarTitleText" : "绑定新地锁"
-
- }
- },
-
- {
- "path" : "infoLock",
- "style" :
- {
- "navigationBarTitleText" : "地锁详情"
-
- }
- },
- {
- "path" : "bindLockStatus",
- "style" :
- {
- "navigationBarTitleText" : "绑定新地锁"
- }
- },
- {
- "path" : "myWhite",
- "style" :
- {
- "navigationBarTitleText" : "我的白名单"
- }
- },
- {
- "path" : "editLock",
- "style" :
- {
- "navigationBarTitleText" : "修改地锁",
- "mp-alipay": {
- "usingComponents": {
- "u-picker": "/uni_modules/uview-ui/components/u-picker/u-picker"
- }
- }
- }
- }
- ]
- }
- ],
- "tabBar": {
- "navigationStyle": "custom",
- "color": "#7A7E83",
- "selectedColor": "#347CF6",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
-
- "list": [{
- "pagePath": "pages/index/index",
-
- "text": "附近"
- }, {
- "pagePath": "pages/index/center",
-
- "text": "我的"
- }]
- },
-
- "permission":{
- "scope.userLocation":{
- "desc":"获得用户当前位置"
- }
- },
- "globalStyle": {
- //"navigationStyle": "custom", // 隐藏系统导航栏
- "navigationBarTitleText": "智泊e家",
- "enablePullDownRefresh": false,
- "navigationBarTextStyle":"black",
- "navigationBarBackgroundColor":"#fff"
-
- },
-
- "uniIdRouter": {},
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- }
- }
|