微信小程序自定义tab导航

1.wxml文件

<view class="swiper-tab">
    <view class="swiper-tab-list" data-current="0" bindtap="swichNav">
        <view class="item {{currentTab==0 ? 'on' : ''}}">未审核</view>
    </view>
    <view class="swiper-tab-list" data-current="1" bindtap="swichNav">
        <view class="item {{currentTab==1 ? 'on' : ''}}">已驳回</view>
    </view>
    <view class="swiper-tab-list" data-current="2" bindtap="swichNav">
        <view class="item {{currentTab==2 ? 'on' : ''}}">待确认</view>
    </view>
    <view class="swiper-tab-list" data-current="3" bindtap="swichNav">
        <view class="item {{currentTab==3 ? 'on' : ''}}">已通过</view>
    </view>
</view>
<swiper current="{{currentTab}}" class="swiper-box" duration="300" style="height:{{winHeight - 31}}px" bindchange="bindChange">
    <swiper-item>1</swiper-item>
    <swiper-item>2</swiper-item>
    <swiper-item>3</swiper-item>
    <swiper-item>4</swiper-item>
</swiper>

js

/*
 * @Author: your name
 * @Date: 2020-11-06 14:01:47
 * @LastEditTime: 2020-11-06 14:05:34
 * @LastEditors: Please set LastEditors
 * @Description: In User Settings Edit
 * @FilePath: /gdkqsaas_mini/pages/tabs/tabs.js
 */
Page({
  data: {
    winWidth: 0,
    winHeight: 0,
    currentTab: 0,
  },
  bindChange: function (e) {
    var that = this;
    that.setData({ currentTab: e.detail.current });
  },
  //  tab切换逻辑
  swichNav: function (e) {
    var that = this;
    console.log("eee", e);
    if (this.data.currentTab === e.currentTarget.dataset.current) {
      return false;
    } else {
      that.setData({
        currentTab: e.currentTarget.dataset.current,
      });
    }
  },
});

wxss

.swiper-tab {
  width: 100%;
  text-align: center;
  line-height: 80rpx;
  background: #ffffff;
}
.swiper-tab-list {
  font-size: 32rpx;
  display: inline-block;
  width: 25%;
  padding-left: 20rpx;
  padding-right: 20rpx;
  font-weight: bold;
}
.on {
  color: #076efe !important;
  border-bottom: 4rpx solid #076efe;
}

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
微信小程序中,自定义底部导航栏的代码如下: ```html <view class="tab-bar"> <view class="tab-item" wx:for="{{tabs}}" wx:key="{{item.id}}" bindtap="switchTab" data-id="{{item.id}}"> <image class="tab-icon" src="{{item.icon}}" /> <text class="tab-title">{{item.title}}</text> </view> </view> ``` 在上面的代码中,我们使用了一个 `view` 标签作为底部导航栏的容器,并在其中使用了一个 `wx:for` 循环渲染每个导航项。每个导航项都是一个 `view` 标签,并包含了一个图标和一个标题。我们还为每个导航项绑定了一个 `bindtap` 事件,用于在用户点击导航项时切换页面。 接下来,我们需要在页面的 `js` 文件中定义导航项的数据和切换页面的逻辑: ```javascript Page({ data: { tabs: [ { id: 0, title: '首页', icon: '/images/home.png', url: '/pages/index/index' }, { id: 1, title: '消息', icon: '/images/message.png', url: '/pages/message/message' }, { id: 2, title: '我的', icon: '/images/me.png', url: '/pages/me/me' } ], activeTab: 0 }, switchTab: function(e) { const id = e.currentTarget.dataset.id const tab = this.data.tabs.find(item => item.id === id) if (tab) { wx.switchTab({ url: tab.url }) this.setData({ activeTab: id }) } } }) ``` 在上面的代码中,我们使用了一个 `data` 对象来保存导航项的数据和当前选中的导航项。在 `switchTab` 方法中,我们通过点击事件获取到用户点击的导航项的 `id`,然后在导航项数组中查找对应的导航项,并使用 `wx.switchTab` 方法切换到对应的页面。最后,我们使用 `setData` 方法更新当前选中的导航项的 `id`。 最后,我们还需要在 `wxss` 文件中定义导航栏的样式: ```css .tab-bar { display: flex; flex-direction: row; justify-content: space-around; align-items: center; height: 100rpx; background-color: #fff; box-shadow: 0 -1px 5px #ddd; } .tab-item { display: flex; flex-direction: column; align-items: center; } .tab-icon { width: 50rpx; height: 50rpx; } .tab-title { font-size: 24rpx; margin-top: 10rpx; } ``` 在上面的代码中,我们使用了 `flex` 布局来将导航项平均分配到底部导航栏中,并设置了一些基本的样式,如高度、背景色、阴影等。我们还为导航项的图标和标题设置了一些样式,如大小、间距、字体大小等。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值