index.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!--nova-werun/pages/home/sport/sport-home/index.wxml-->
  2. <nav type="back" title="运动" background-color="{{'#4F9AF7'}}" front-color="{{'#333333'}}"></nav>
  3. <view class="all" style="height: {{contentHeight}}rpx;">
  4. <view class="tab-bar">
  5. <view style="margin-left: 66rpx;" class="tab-item {{currentTab == 0? 'active' : ''}}" bindtap="switchTab" data-index="0">
  6. 步行
  7. </view>
  8. <view style="margin-left: 44rpx;" class="tab-item {{currentTab == 1? 'active' : ''}}" bindtap="switchTab" data-index="1">
  9. 跑步
  10. </view>
  11. </view>
  12. <!-- 走路 -->
  13. <view wx:if="{{currentTab == 0}}">
  14. <view class="textbox">
  15. <view class="text">今日积累行走</view>
  16. <view class="number" data-url="../../statistics/index" bindtap="gourl">{{distance}}公里 ></view>
  17. </view>
  18. <view class="mapbox">
  19. <view class="map">
  20. <map class="map" enable-zoom="ture" enable-scroll="ture" id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="18" markers="{{markers}}"></map>
  21. </view>
  22. <view class="button" data-url="../sport-start/index" bindtap="gourl">GO</view>
  23. </view>
  24. </view>
  25. <!-- 跑步 -->
  26. <view wx:if="{{currentTab == 1}}">
  27. <view class="textbox">
  28. <view class="text">今日积累跑步</view>
  29. <view class="number" data-url="../../statistics/index" bindtap="gourl">{{distance}}公里 ></view>
  30. </view>
  31. <view class="mapbox">
  32. <view class="map">
  33. <map class="map" enable-zoom="ture" enable-scroll="ture" id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="18" markers="{{markers}}"></map>
  34. </view>
  35. <view class="button" data-url="../sport-start/index" bindtap="gourl">GO</view>
  36. </view>
  37. </view>
  38. </view>