- <!--index.wxml-->
- <view class="container">
- <view class="con">
- <view class="nav">
- <view class="list {{type === 'list'? 'cur':''}}" data-type='list' bindtap="switchType">列表</view>
- <view class="line"></view>
- <view class="bigPic {{type === 'big-pic'? 'cur':''}}" data-type='big-pic' bindtap="switchType">大图</view>
- <view class="line"></view>
- <view class="mail {{type === 'map'? 'cur':''}}" data-type='map' bindtap="switchType">地图</view>
- </view>
- <list wx:if="{{type === 'list'}}"></list>
- <big-pic wx:if="{{type === 'big-pic'}}"></big-pic>
- <map-sense wx:if="{{type === 'map'}}"></map-sense>
- </view>
-
- </view>
|