index.wxml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!--nova-werun/pages/home/sport/sport-start/index.wxml-->
  2. <view class="all" style="height: {{contentHeight}}rpx;">
  3. <view class="navbox" style="height: {{navheight}}rpx;">
  4. <view class="nav">
  5. <!-- <view class="nav-title">{{title}}</view> -->
  6. <view class="nav-title">运动开始</view>
  7. <view class="nav-addbox" bindtap="goback">
  8. <van-icon name="arrow-left" size='44rpx' color='white' />
  9. </view>
  10. </view>
  11. </view>
  12. <!-- 确认退出运动 -->
  13. <van-dialog title="取消运动" message="确定要退出运动吗?" show="{{ show }}" show-cancel-button bind:close="onClose" bind:confirm='onConfirm'></van-dialog>
  14. <!-- 是否继续运动 -->
  15. <van-dialog title="继续运动" message="是否继续上次运动" show="{{ show2 }}" show-cancel-button bind:close="onClose2" bind:confirm='onConfirm2'></van-dialog>
  16. <view class="map">
  17. <map class="map" enable-zoom="ture" enable-scroll="ture" id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="18" markers="{{markers}}"></map>
  18. </view>
  19. <view class="numberbox">
  20. <view class="distance">
  21. <view class="dis-num">{{distance}}</view>
  22. <view class="dis-text">公里</view>
  23. <view class="dis-num">{{defferentstep}}</view>
  24. <view class="dis-text"></view>
  25. </view>
  26. <view class="number">
  27. <view class="num">
  28. <view class="num-num">{{pace}}</view>
  29. <!-- <view class="num-text" wx:if="{{title =='步行'}}">配速(h/km)</view> -->
  30. <view class="num-text">配速(min/km)</view>
  31. </view>
  32. <view class="num">
  33. <view class="num-num">{{formattedTime}}</view>
  34. <view class="num-text">时间</view>
  35. </view>
  36. <view class="num">
  37. <view class="num-num">{{calorie}}</view>
  38. <view class="num-text">千卡</view>
  39. </view>
  40. </view>
  41. <view class="btn" wx:if="{{!isstop}}">
  42. <image class="pause" src="https://file-cloud.fmode.cn/qpFbRRSZrO/20250103/ot1nko024129224.png?imageView2/1/w/200/h/200" bindtap="stop"></image>
  43. <view class="btn-text">暂停</view>
  44. </view>
  45. <view class="stop" wx:if="{{isstop}}">
  46. <view class="btn">
  47. <image class="pause" src="https://file-cloud.fmode.cn/qpFbRRSZrO/20250103/gu1592024214365.png?imageView2/1/w/200/h/200" bindtap="continue"></image>
  48. <view class="btn-text">继续</view>
  49. </view>
  50. <view class="btn">
  51. <view class="btn-stop" style="background:{{percentage}}" bindlongpress="startIncrease" bindtouchend="stopIncrease">
  52. <view class="btn-stop1">
  53. <view class="btn-stop2"></view>
  54. </view>
  55. </view>
  56. <view class="btn-text">长按结束</view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>