index.wxml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <!--nova-werun/components/home/index.wxml-->
  2. <view class="all" style="height: {{screenHeight}}rpx;">
  3. <view class="navbox" style="height: {{navheight}}rpx;">
  4. <view class="nav">
  5. <view class="nav-title">首页</view>
  6. <view class="nav-addbox">
  7. <van-icon name="location-o" size='28rpx' color='white' />
  8. <view class="nav-add">{{address}}</view>
  9. </view>
  10. </view>
  11. </view>
  12. <view class="sco" style="height: {{contentHeight}}rpx;">
  13. <!-- 顶部 -->
  14. <view class="topbox">
  15. <view class="top-tex">
  16. 健康运动 go
  17. </view>
  18. <view class="top-tex2">
  19. 累计运动
  20. <view class="top-tex2-tex">{{sportTotal}}</view>
  21. </view>
  22. </view>
  23. <view class="clockinbox">
  24. <view class="clockinbox2">
  25. <view class="runbox" style="background:{{percentage}}">
  26. <view class="run">
  27. <view class="step-num">{{steps||0}}</view>
  28. <view class="tody-steps">今日步数</view>
  29. </view>
  30. </view>
  31. <!-- 目标 -->
  32. <view class="objbox">
  33. <view class="obj1" bindtap="gourl" data-url="../../pages/home/step/index">
  34. <view class="boj1-ti">目标步数</view>
  35. <view class="obj1-numbox">
  36. <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/s519td033232206.png"></image>
  37. <view class="obj1-numbox-tex">{{target}}步</view>
  38. </view>
  39. </view>
  40. <view class="obj1" style="margin-top: 32rpx;">
  41. <view class="boj1-ti">连续打卡</view>
  42. <view class="obj1-numbox">
  43. <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20250102/tii6p6035434602.png"></image>
  44. <view class="obj1-numbox-tex">{{meContinuousChick}}天</view>
  45. </view>
  46. </view>
  47. <!-- <view class="obj2">积累打卡7天,超过20%人</view> -->
  48. </view>
  49. </view>
  50. <view class="today-check" bindtap="gourl" data-url="../../pages/home/sport/sport-home/index">今日打卡</view>
  51. </view>
  52. <van-notice-bar color="#1989fa" color='#000' background="#ecf9ff" background="#fff" left-icon="volume-o" custom-class='a' text="{{notice||'欢迎加入儒乐湖健身~'}}" />
  53. <!-- 类型 -->
  54. <view class="typebox">
  55. <view class="column" wx:for="{{rows}}" wx:key="index" data-url="{{item.url}}" bindtap="gourl" data-active="{{item.active}}">
  56. <image src="{{item.image}}"></image>
  57. <text class="item-text">{{item.text}}</text>
  58. </view>
  59. </view>
  60. <view class="rankbox">
  61. <view class="ran-top">
  62. <view class="top-til">{{changetitleMap[changetitle]}}排行榜</view>
  63. <view class="top-box" bindtap="change">
  64. 切换
  65. <image style="width: 22rpx;height: 22rpx;" src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241226/fejv43122812199.png"></image>
  66. </view>
  67. <view class="top-box" style="margin-left: 20rpx;" bindtap="changeup">
  68. {{rank=='ASC'?'逆序':'正序'}}
  69. <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241226/8lu1od115228414.png"></image>
  70. </view>
  71. </view>
  72. <block wx:for="{{todayList}}" wx:key="index">
  73. <view class="cardbox">
  74. <view class="image1" wx:if="{{index==0}}">1</view>
  75. <view class="image2" wx:if="{{index==1}}">2</view>
  76. <view class="image3" wx:if="{{index==2}}">3</view>
  77. <view class="paiming" wx:if="{{index>=3}}">{{index+1}}</view>
  78. <image class="avarter" src="{{item.avatar}}"></image>
  79. <view class="name">
  80. {{item.nickname||'微信用户'}}
  81. <view class="name2">已打卡{{item.count||0}}天</view>
  82. </view>
  83. <view class="num">{{item.totalSteps||0}}</view>
  84. </view>
  85. </block>
  86. <block wx:if="{{todayList.length<=0}}">
  87. <van-empty description="{{changetitleMap[changetitle]}}榜单静悄悄,快来运动一下吧~">
  88. <van-button bindtap="gourl" data-url="../../pages/home/sport/sport-home/index" color="#4F9AF7" size="small">前往运动</van-button>
  89. </van-empty>
  90. </block>
  91. </view>
  92. </view>
  93. </view>