123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- //mqtt页面
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "IOT"
- }
- },
- //设备页面
- {
- "path" : "pages/index/device",
- "style" :
- {
- "navigationBarTitleText": "device"
- }
-
- },
- //我的页面
- {
- "path" : "pages/index/mine",
- "style" :
- {
- "navigationBarTitleText": "mine"
- }
-
- },
-
- //扫描蓝牙设备页面
- {
- "path" : "pages/ble/ScanBleDevice",
- "style" :
- {
- "navigationBarTitleText": "扫描设备"
-
- }
- },
- //连接蓝牙设备页面
- {
- "path" : "pages/ble/ConnectBleDevice",
- "style" :
- {
- "navigationBarTitleText": "连接设备",
- "enablePullDownRefresh": false
- }
-
- }
-
- ],
- "dependencies": {
- "mqtt": "^3.0.0"
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#6d6d6d",
- "enablePullDownRefresh":true,
- "backgroundTextStyle":"light"
- },
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#3cc51f",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "height": "50px",
- "fontSize": "10px",
- "iconWidth": "24px",
- "spacing": "3px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/image/iot.png",
- "selectedIconPath": "static/image/iot_org.png",
- "text": "IOT"
- }, {
- "pagePath": "pages/index/device",
- "iconPath": "static/image/device.png",
- "selectedIconPath": "static/image/device_red.png",
- "text": "device"
- }
- , {
- "pagePath": "pages/index/mine",
- "iconPath": "static/image/mine.png",
- "selectedIconPath": "static/image/mine_pressed.png",
- "text": "mine"
- }],
- "midButton": {
- "width": "80px",
- "height": "50px",
- "text": "文字",
- "iconPath": "static/image/mine.png",
- "iconWidth": "24px",
- "backgroundImage": "static/image/midButton_backgroundImage.png"
- }
- }
- }
|