微信小程序开发,实现底部导航栏

1. 官方文档指南

  1. 全局配置说明: https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html

  2. TabBar底部导航栏: https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#tabBar

1. 全局配置

小程序根目录下的 app.json 文件用来对微信小程序进行全局配置。文件内容为一个 JSON 对象,有以下属性:

配置项

属性 类型 必填 描述 最低版本
entryPagePath string 小程序默认启动首页 -
pages string[] 页面路径列表 -
window Object 全局的默认窗口表现 -
tabBar Object 底部 tab 栏的表现 -
networkTimeout Object 网络超时时间 -
debug boolean 是否开启 debug 模式,默认关闭 -
functionalPages boolean 是否启用插件功能页,默认关闭 2.1.0
subpackages Object[] 分包结构配置 1.7.3
workers string Worker 代码放置的目录 1.9.90
requiredBackgroundModes string[] 需要在后台使用的功能,如「音乐播放」 -
requiredPrivateInfos string[] 调用的地理位置相关隐私接口 -
plugins Object 使用到的插件 1.9.6

更多详情,请阅读官方文档指南

2. tabBar定义

tabBar

如果小程序是一个多 tab 应用(客户端窗口的底部或顶部有 tab 栏可以切换页面),可以通过 tabBar 配置项指定 tab 栏的表现,以及 tab 切换时显示的对应页面。

属性 类型 必填 默认值 描述 最低版本
color HexColor - tab上的文字默认颜色,仅支持十六进制颜色 -
selectedColor HexColor - tab上的文字选中时的颜色,仅支持十六进制颜色 -
backgroundColor HexColor - tab的背景色,仅支持十六进制颜色 -
borderStyle string black tabBar上边框的颜色,仅支持black / white -
list Array - tab列表,详见list属性说明,最少2个、最多5个tab -
position string bottom tabBar的位置,仅支持bottom / top -
custom boolean false 自定义tabBar,见详情 2.5.0

温馨提示:
tabBar的配置在小程序根目录下的 app.json

3. 代码实现过程

"tabBar":{
    
    
     "color":"#8a8a8a",
     "selectedColor": "#f3514f",
     "list": [
       {
    
    
         "pagePath": "pages/home/home",
         "text":"首页",
         "iconPath":"/assets/img-home-normal.png",
         "selectedIconPath":"/assets/img-home-selected.png"
       },
       {
    
    
        "pagePath": "pages/cate/cate",
        "text":"分类",
        "iconPath":"/assets/img-cate-normal.png",
        "selectedIconPath":"/assets/img-cart-selected.png"
      },
      {
    
    
        "pagePath": "pages/cart/cart",
        "text":"购物车",
        "iconPath":"/assets/img_cart-normal.png",
        "selectedIconPath":"/assets/img-cart-selected.png"
      },
      {
    
    
        "pagePath": "pages/mine/mine",
        "text":"我的",
        "iconPath":"/assets/img-mine-normal.png",
        "selectedIconPath":"/assets/img-mine-selected.png"
      }
     ]
  },

4. 运行效果

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/jky_yihuangxing/article/details/141394990