mpvue中主main.js的编写

 //整个头部的界面样式设置↓
    window: {
      backgroundTextStyle: 'light',
      navigationBarBackgroundColor: '#1b82d1',
      navigationBarTitleText: '定义名字',
      navigationBarTextStyle: '#fefefe'
    },

    //底部导航栏的设置↓
    tabBar: {
      color: '#aaa',
      selectedColor: '#1b82d1',
      backgroundColor: '#fff',
      list: [{
          'pagePath': 'pages/default/main',
          'text': '首页',
          'iconPath': '/static/images/shouye00.png',
          'selectedIconPath': '/static/images/shouye01.png'
        }, {
          'pagePath': 'pages/default/main',
          'text': '热搜',
          'iconPath': '/static/images/hot00.png',
          'selectedIconPath': '/static/images/hot01.png'
        }, {
          'pagePath': 'pages/default/main',
          'text': '我的',
          'iconPath': '/static/images/my00.png',
          'selectedIconPath': '/static/images/my01.png'
        }

      ]
    }
原文地址:https://www.cnblogs.com/wilsunson/p/9438328.html