index.wxml 670 B

12345678910111213141516
  1. <!--index.wxml-->
  2. <view class="container">
  3. <view class="con">
  4. <view class="nav">
  5. <view class="list {{type === 'list'? 'cur':''}}" data-type='list' bindtap="switchType">列表</view>
  6. <view class="line"></view>
  7. <view class="bigPic {{type === 'big-pic'? 'cur':''}}" data-type='big-pic' bindtap="switchType">大图</view>
  8. <view class="line"></view>
  9. <view class="mail {{type === 'map'? 'cur':''}}" data-type='map' bindtap="switchType">地图</view>
  10. </view>
  11. <list wx:if="{{type === 'list'}}"></list>
  12. <big-pic wx:if="{{type === 'big-pic'}}"></big-pic>
  13. <map-sense wx:if="{{type === 'map'}}"></map-sense>
  14. </view>
  15. </view>