小程序tab导航切换样式

时间:2018-11-09 18:20:15   收藏:0   阅读:466

技术分享图片

 

 

<view id="green" class="scroll-view-item {{ current == index ? ‘active‘ :‘‘ }} " bindtap="yearselect" wx:for="{{year}}" wx:key="{{index}}" data-year="{{item}}" data-index="{{index}}">{{item}}</view>

yearselect(e){
this.setData({
yearselect:e.currentTarget.dataset.year,
current:e.currentTarget.dataset.index
})
},

.active{
background: #62B0F2;
color: #fff;
}

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!