码迷,mamicode.com
首页 > 微信 > 详细

购物车小程序列表状态

时间:2020-07-26 01:29:05      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:class   程序   block   dataset   uri   item   targe   data   div   

<scroll-view class="nav_left" scroll-y>
<block wx:key="{{index}}" wx:for="{{navLeftItems}}">
//当前点击的项等于当前点击下标添加 class
<view class="nav_left_items {{curIndex == index ? ‘nav_left_item-active‘ : ‘‘}}" data-index="{{index}}" bindtap="switchRightTab">
{{item}}
</view>

 

</block>
</scroll-view>
//默认等于0
data:{
curIndex: 0,
}
 
switchRightTab(e) {
let index = parseInt(e.currentTarget.dataset.index);
this.setData({
curIndex: index
})
},

购物车小程序列表状态

标签:class   程序   block   dataset   uri   item   targe   data   div   

原文地址:https://www.cnblogs.com/xzhce/p/13377988.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!