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.

24 lines
881 B

  1. <!--Pages/community/index/index.wxml-->
  2. <view hidden="{{currentTab == 0? false: true}}">
  3. <community />
  4. </view>
  5. <view hidden="{{currentTab == 1? false: true}}">
  6. <history />
  7. </view>
  8. <view hidden="{{currentTab == 2? false: true}}">
  9. <star />
  10. </view>
  11. <view hidden="{{currentTab == 3? false: true}}">
  12. <id />
  13. </view>
  14. <view class="tab-bar">
  15. <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">
  16. <cover-image src="{{currentTab === idx ? item.selectedIconPath : item.iconPath}}"></cover-image>
  17. <text wx:for-index="idx" data-current="{{idx}}" src="{{currentTab == idx ? item.selectedIconPath : item.iconPath }}">{{item.text}}</text>
  18. </view>
  19. <image src="/asset/img/hangou1.png" mode="heightFix" class="hg"></image>
  20. </view>