小程序-tabBar简易版
Posted 吴小明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序-tabBar简易版相关的知识,希望对你有一定的参考价值。
<!-- 结构 -->
<view class="wrapper">
<block wx:for="{{desc}}">
<view bindtap="toggle" data-index="{{index}}" class="{{descIndex===index?\'active\':\'\'}}">{{item}}</view>
</block>
</view>
<view wx:if="{{descIndex===0}}">
商品详情
</view>
<view wx:if="{{descIndex===1}}">
产品参数
</view>
<view wx:if="{{descIndex===2}}">
售后保障
</view>
/* 样式 */
.wrapper{
display: flex;
justify-content: space-around;
}
.wrapper view{
flex: 1;
text-align: center;
line-height: 100rpx;
border-bottom: 1rpx solid #ccc;
}
.wrapper .active{
color: red;
font-weight: bold;
border-bottom: 1rpx solid red;
}
Page({ data: { desc: ["商品详情", "产品参数", "售后保障"], descIndex: 0, }, toggle(e) { this.setData({ descIndex: e.currentTarget.dataset.index }) }, })
以上是关于小程序-tabBar简易版的主要内容,如果未能解决你的问题,请参考以下文章