来说个老生常谈的问题 选项卡

15 篇文章 0 订阅

选项卡这个东西 怎么说 找个插件随便就加上了 但是插件的东西 真的不好改样式 改死人

干脆自己写一个得了

<view class="wrap">
	<view class="tab {{index == active ? 'active' : ''}}" wx:for="{{tab}}" wx:key="index" data-index="{{index}}" bindtap="checkItem">
		{{item.name}}
	</view>
</view>

<view wx:if="{{active == 0}}">1</view>
<view wx:if="{{active == 1}}">2</view>
<view wx:if="{{active == 2}}">3</view>

 

data: {
    active: 0,
}

 checkItem(e) {
    this.setData({
      active: e.currentTarget.dataset.index
    })
  },
.wrap{
  width: 100%;
  height: 80rpx;
  padding:0 40rpx;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  margin-bottom: 24rpx;
}
.tab{
  height: 80rpx;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 80rpx;
  position: relative;  
}
.active::before{
  content: '';
  display: inline-block;
  width: 30rpx;
  height: 6rpx;
  border-radius: 5rpx;
  background-color:#3469F1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.active{
  font-weight: 700;
  color: #3469F1;
}
.tab:nth-child(1){
  text-align: left;
}
.tab:nth-child(3){
  text-align: right;

}

原理还是比较简单 通过动态绑定index  然后下面的div通过active来判断是否显示    我的css写的还是有点东西的 感兴趣的可以看看

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值