微信小程序开发 基础配置

配置程序顶部样式

//app.jspn

"window": {
    "backgroundTextStyle": "light",      
    "navigationBarBackgroundColor": "#D8C523",      //背景颜色
    "navigationBarTitleText": "家具类电商",          //文字显示
    "navigationBarTextStyle": "white"               //文字颜色   只能white和black两种
  }

微信小程序开发 基础配置_第1张图片

配置程序底部导航样式

//app.json
 
 "tabBar": {
    "backgroundColor": "#000",                  //背景颜色
    "list": [
      {
        "pagePath": "pages/index/index",        //跳转的页面地址
        "text": "推荐",                         //文字显示
        "iconPath": "/images/bian.png",        //初始图标显示
        "selectedIconPath": "/images/bian.png" //点击后图标显示
      },
      {
        "pagePath": "pages/logs/logs",
        "text": "购物车",
        "iconPath": "/images/bian.png",
        "selectedIconPath": "/images/bian.png"
      }, {
        "pagePath": "pages/me/me",
        "text": "我的",
        "iconPath": "/images/home.png",
        "selectedIconPath": "/images/bian.png"
      }
    ]
  }

你可能感兴趣的:(微信小程序)