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.

18 lines
783 B

  1. <view hidden="{{currentTab == 0? false: true}}">
  2. <report />
  3. </view>
  4. <view hidden="{{currentTab == 1? false: true}}">
  5. <bill />
  6. </view>
  7. <view hidden="{{currentTab == 2? false: true}}">
  8. <checked />
  9. </view>
  10. <view class="tab-bar">
  11. <view wx:for="{{list}}" wx:for-index="idx" wx:for-item="item" wx:key="prototype" class="tab-bar-item {{currentTab == idx ? 'active' : 'default'}}" data-current="{{idx}}" bindtap="switchTab">
  12. <cover-image src="{{currentTab === idx ? item.selectedIconPath : item.iconPath}}"></cover-image>
  13. <text wx:for-index="idx" data-current="{{idx}}" src="{{currentTab == idx ? item.selectedIconPath : item.iconPath }}">{{item.text}}</text>
  14. </view>
  15. <image src="/asset/img/hangou1.png" mode="heightFix" class="hg"></image>
  16. </view>