You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
406 B
11 lines
406 B
<view class="tab">
|
|
<view class="tab-item {{cur - 0 === index - 0?'cur':''}} {{noBg?'noBg':''}}"
|
|
wx:for="{{tabList}}"
|
|
data-index="{{index}}"
|
|
wx:key="{{index}}"
|
|
bind:tap="tabChange"
|
|
>
|
|
<text>{{item.label}}</text>
|
|
<image mode="widthFix" src="../../images/statistics/sel.png" style="width: 12rpx;height: 8rpx" class="cur-img"/>
|
|
</view>
|
|
</view>
|