index.wxml 705 B

1234567891011121314151617
  1. <!--common/components/drop-down/index.wxml-->
  2. <view class='drop-container' bindtap='closeMask'>
  3. <view class='drop-body' >
  4. <view class='drop-nav'>
  5. <view>{{exhiNum}}个展览</view>
  6. <view class='drop-tag'>{{navItems.name}}
  7. <text class='iconfont iconpaixuxialacaidan'></text>
  8. </view>
  9. </view>
  10. <view class='drop-items'>
  11. <view bindtap='topItem' data-id='{{item.id}}' class="drop-item {{(item.id==activeType||item.id==activeDist)&&'drop-item-active'}}" wx:for="{{navItems.arr}}" wx:key="index">
  12. {{item.name}}
  13. <text wx:if="{{item.id==activeType||item.id==activeDist}}" class='iconfont iconxuanzhong'></text>
  14. </view>
  15. </view>
  16. </view>
  17. </view>