shop-tabbar.wxml 471 B

12345678910
  1. <!--pages/shop-tabbar/shop-tabbar.wxml-->
  2. <view class="shop-tabbar-container">
  3. <block wx:for="{{list}}" wx:key="*this">
  4. <view class="tabBar" bindtap="tabChange" data-index="{{index}}">
  5. <image class="tabIcon" src="{{item.selectedIconPath}}" wx:if="{{currentTab==index}}"></image>
  6. <image class="tabIcon" src="{{item.iconPath}}" wx:else></image>
  7. <text class="tabTitle {{currentTab==index?'on':''}}">{{item.text}}</text>
  8. </view>
  9. </block>
  10. </view>