123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- }, {
- "path": "pages/bluetooth/bluetooth",
- "style": {
- "navigationBarTitleText": "搜索页面",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/lock-test/lock-test",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTitleText": "门锁测试",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/cat-eye-test/cat-eye-test",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTitleText": "猫眼测试",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/upload-face/upload-face",
- "style": {
- "navigationBarTitleText": "人脸上传",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/try/try",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/room/room",
- "style": {
- "navigationBarTitleText": "房间",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/gateway/gateway",
- "style": {
- "navigationBarTitleText": "网关",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/Bluetooth/Bluetooth",
- "style": {
- "navigationBarTitleText": "蓝牙",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/mine/mine",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/add-project/add-project",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/project-list/project-list",
- "style": {
- "navigationBarTitleText": "项目列表",
- "onReachBottomDistance": 150,
- "enablePullDownRefresh": true //下拉刷新
- // "backgroundColor": "#f25415"
- }
- }
- ,{
- "path" : "pages/door-lock-module/door-lock-module",
- "style" :
- {
- "navigationStyle": "custom",
- "navigationBarTitleText": "门锁模块",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "tabBar": {
- "selectedColor": "#1296db",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/home.png",
- "selectedIconPath": "static/home_select.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/bluetooth/bluetooth",
- "iconPath": "static/bluetooth (1).png",
- "selectedIconPath": "static/bluetooth_select.png",
- "text": "设备"
- },
- {
- "pagePath": "pages/mine/mine",
- "iconPath": "static/mine.png",
- "selectedIconPath": "static/mine_select.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#1296db",
- "backgroundColor": "#38253b"
- },
- "uniIdRouter": {}
- }
|