123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index", //首页
- "style": {
- "navigationBarTitleText": "猫王妙播"
- }
- },
- {
- "path": "pages/play/play",
- "style": {
- "navigationBarTitleText": "妙控",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/demo/mqtt/mqttDemo",
- "style": {
- "navigationBarTitleText": "mqttDemo",
- "enablePullDownRefresh": false
- }
- }
- , {
- "path": "pages/demo/mqtt/deviceInfo",
- "style": {
- "navigationBarTitleText": "mqttDemo",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "猫王妙播",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#353535",
- "selectedColor": "#6547A3",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/home/home.png",
- "selectedIconPath": "static/home/home_selected.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/play/play",
- "iconPath": "static/home/play.png",
- "selectedIconPath": "static/home/play_selected.png",
- "text": "妙控"
- },
- {
- "pagePath": "pages/mine/mine",
- "iconPath": "static/home/mine.png",
- "selectedIconPath": "static/home/mine_selected.png",
- "text": "我的"
- }
- ]
- },
- "condition": {
- "current": 0,
- "list": [
- {
- "name": "mqtt",
- "path": "pages/demo/mqtt/mqttDemo"
- },
- {
- "name": "登录组件",
- "path": "pages/login/login"
- }
- ]
- }
- }
|