1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- {
- "pages": [{
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "系统首页"
- }
- },
- {
- "path": "pages/home/index",
- "style": {
- "navigationBarTitleText": "神鹿峰旅游度假区",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/map/index",
- "style": {
- "navigationBarTitleText": "地图"
- }
- },
- {
- "path": "pages/customer/index",
- "style": {
- "navigationBarTitleText": "客服"
- }
- },
- {
- "path": "pages/my/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
- ],
- "subPackages": [ //分包配置
- {
- "root": "pagesIndex",
- "pages": [ //分包
- {
- "path": "type/index",
- "style": {
- "navigationBarTitleText": "分类"
- }
- }
- ]
- }
- ],
- "globalStyle": {
- "pageOrientation": "portrait",
- "navigationBarTitleText": "神鹿峰小程序",
- "navigationBarTextStyle": "black",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "backgroundColorTop": "#F4F5F6",
- "backgroundColorBottom": "#F4F5F6"
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#007AFF",
- "borderStyle": "black",
- "backgroundColor": "#F8F8F8",
- "list": [{
- "pagePath": "pages/home/index",
- "iconPath": "static/home.png",
- "selectedIconPath": "static/homeHL.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/map/index",
- "iconPath": "static/map.png",
- "selectedIconPath": "static/mapHL.png",
- "text": "地图"
- },
- {
- "pagePath": "pages/customer/index",
- "iconPath": "static/kf.png",
- "selectedIconPath": "static/kfHL.png",
- "text": "客服"
- },
- {
- "pagePath": "pages/my/index",
- "iconPath": "static/my.png",
- "selectedIconPath": "static/myHL.png",
- "text": "我的"
- }
- ]
- },
- "condition": { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [{
- "name": "系统首页", //模式名称
- "path": "pages/index/index", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }]
- }
- }
|