当前位置:   article > 正文

微信小程序自定义 Tabbar_微信小程序 tabbar 扫码

微信小程序 tabbar 扫码

一、需求说明

小程序 Tabbar 自定义内容样式和事件,实现个性化场景

案例如下,点击扫码图标进入扫码页面:

在这里插入图片描述

二、实现 Demo

1、安装 Vant Weapp

为减少重复开发,使用该组件库Tabbar 组件,用法见文档

2、小程序 tabBar 设置完整配置项,并开启自定义
"tabBar": {
    "list": [
      {
        "pagePath": "pages/index/index",
        "text": "首页",
        "iconPath": "images/home.png",
        "selectedIconPath": "images/home-active.png"
      },
      {
        "pagePath": "pages/user/user",
        "text": "个人中心",
        "iconPath": "images/user.png",
        "selectedIconPath": "images/user-active.png"
      }
    ],
    "custom": true
},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
3、编写自定义 tabBar 文件,可参考官方教程

在这里插入图片描述

index.json

{
    "component": true
}
  • 1
  • 2
  • 3

index.js

// custom-tab-bar/index.js
const imgUrlPrefix = 'http://xtc-zht.oss-cn-shenzhen.aliyuncs.com/static/retail-app/tabbar'

Component({
  data: {
    imgUrlPrefix,
    active: 0,
    list: [
      {
        pagePath: "/pages/index/index",
        text: "首页",
        iconPath: "/home.png",
        selectedIconPath: "/home-active.png"
      },
      {
        pagePath: "/pages/user/user",
        text: "个人中心",
        iconPath: "/user.png",
        selectedIconPath: "/user-active.png"
      },
    ]
  },
  methods: {
    onChange(event) {
      this.setData({ active: event.detail });
      wx.switchTab({
        url: this.data.list[event.detail].pagePath,
      });
    },
    init() {
      const page = getCurrentPages().pop();
      this.setData({
        active: this.data.list.findIndex(item => item.pagePath === `/${page.route}`)
      });
    },
    handleScan() {
      wx.showToast({ title: '扫一扫', icon: 'none' })
    }
  }
})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

index.wxml

<!-- custom-tab-bar/index.wxml -->
<van-tabbar 
  active="{{ active }}" 
  inactive-color="#191919" 
  active-color="#FF7A03" 
  bind:change="onChange"
>
  <block wx:for="{{ list }}" wx:for-item="tab" wx:key="index">
    <van-icon 
      wx:if="{{ index === 1 }}" 
      name="{{ imgUrlPrefix + '/scan.png' }}" 
      size="132rpx" 
      custom-class="scan-custom-class" 
      bind:click="handleScan" 
    />
    <van-tabbar-item wx:key="index" data-path="{{ tab.pagePath }}">
      {{ tab.text }}
      <van-icon slot="icon" name="{{ imgUrlPrefix + tab.iconPath }}" />
      <van-icon slot="icon-active" name="{{ imgUrlPrefix + tab.selectedIconPath }}" />
    </van-tabbar-item>
  </block>
</van-tabbar>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

index.less

// custom-tab-bar/index.wxss
.scan-custom-class {
  position: relative;
  z-index: 10;
  margin-top: -40rpx;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
4、在 tab 页面 onShow 钩子调用 init 方法,维护路由栈正确性

index 页面

在这里插入图片描述
user 页面
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/539981
推荐阅读
  

闽ICP备14008679号