index.wxml 760 B

123456789101112131415161718192021222324
  1. <!--pages/zzdy/index.wxml-->
  2. <!-- /* 顶部背景图 */ -->
  3. <view class="top-bg">
  4. <image src="../../icon/zzdy/bg.png" mode="widthFix" />
  5. </view>
  6. <!-- /* 功能区 */ -->
  7. <view class="content">
  8. <view wx:if="{{tabIndex == 0}}">
  9. <z-index uuid="{{uuid}}"></z-index>
  10. </view>
  11. <view wx:if="{{tabIndex == 1}}">
  12. <z-mine></z-mine>
  13. </view>
  14. </view>
  15. <view class="none"></view>
  16. <view class="tabs">
  17. <view class="tab" wx:for="{{tabs}}" wx:key="index" data-index="{{index}}" bindtap="tabBtn">
  18. <view>
  19. <image src="{{index == tabIndex? item.selected:item.icon}}" mode="widthFix" />
  20. </view>
  21. <view style="{{index == tabIndex? 'color: #5E6ACC;':'color: #999999;'}}">{{item.name}}</view>
  22. </view>
  23. </view>