Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.83 KB

README.md

File metadata and controls

50 lines (41 loc) · 1.83 KB

音乐-微信小程序(原生开发)

借助工具:

引入 weui

底部导航栏配置

"tabBar": {
    "backgroundColor": "#524b38",  // 导航栏背景
    "color": "#a7a7a7",   // 文字颜色
    "selectedColor": "#ffffff",  // 选中文字颜色
    "list": [
      {
        "iconPath": "./images/find.png",  // 默认图标路径
        "selectedIconPath": "./images/find1.png",  // 选中图标路径 
        "pagePath": "pages/index/index",  // 跳转页面路径
        "text": "发现音乐"  // 导航文字
      },
      {
        "iconPath": "./images/my.png",
        "selectedIconPath": "./images/my1.png",
        "pagePath": "pages/my/my",
        "text": "我的音乐"
      },
      {
        "iconPath": "./images/now.png",
        "selectedIconPath": "./images/now1.png",
        "pagePath": "pages/play/play",
        "text": "正在播放"
      },
      {
        "iconPath": "./images/account.png",
        "selectedIconPath": "./images/account1.png",
        "pagePath": "pages/account/account",
        "text": "账号"
      }
    ]
  }