25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

23 satır
961 B

  1. <!--Pages/travel/evaluation/index/index.wxml-->
  2. <view hidden="{{currentTab == 0? false: true}}">
  3. <eval />
  4. </view>
  5. <view hidden="{{currentTab == 1? false: true}}">
  6. <note></note>
  7. </view>
  8. <view hidden="{{currentTab == 2? false: true}}">
  9. <share />
  10. </view>
  11. <view style="position: absolute;bottom: 0;width: 100vw;">
  12. <view class="tab-bar">
  13. <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">
  14. <cover-image src="{{currentTab === idx ? item.selectedIconPath : item.iconPath}}"></cover-image>
  15. <text wx:for-index="idx" data-current="{{idx}}" src="{{currentTab == idx ? item.selectedIconPath : item.iconPath }}">{{item.text}}</text>
  16. </view>
  17. <view>
  18. <image src="/asset/img/hangou1.png" mode="heightFix" class="hg"></image>
  19. </view>
  20. </view>
  21. </view>