123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/index/index",
- "style" :
- {
- "navigationBarTitleText" : "智泊e家"
- }
- }
-
-
-
-
- ],
- "preloadRule": {
- "pages/index/index": {
- "network": "all",
- "packages": [ "pages/business"]
- }
- },
- "easycom": {
- "autoscan": true,
- "custom": {
- "^u-(.*)": "@/subpackage/uview-ui/components/u-$1/u-$1.vue"
- }
- },
- "subPackages": [{
- "root": "subpackage/uview-ui",
- "pages": [] // 无需页面,仅存放组件
- },
- {
- "root": "pages/business",
- "pages": [
-
- {
- "path": "lockInfo",
- "style": {
-
- }
- }
- ,
- {
- "path": "index",
- "style": {
- "navigationBarTitleText": "选择地锁"
- }
- },
-
- {
- "path": "main",
- "style": {
- "navigationBarTitleText": "快捷停车"
- }
- },
-
- {
- "path": "center",
- "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": "修改地锁"
- }
- },
- {
- "path" : "selectParking",
- "style" :
- {
- "navigationBarTitleText" : "选择停车场"
- }
- }
- ]
- }
- ],
-
- "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函数里面得到
- }]
- }
- }
|