index.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. <template>
  2. <view class="mileage-statistics-page">
  3. <view class="search-type-wrap">
  4. <view
  5. v-for="item in queryTypes"
  6. :class="['item', curType == item.type && 'isActive']"
  7. :key="item.type"
  8. @tap="changeType(item.type)"
  9. >
  10. {{ item.label }}
  11. </view>
  12. </view>
  13. <view class="statistics-wrap">
  14. <view class="kilometers-row">
  15. <view class="kilometers">
  16. <u-count-to
  17. :start-val="0"
  18. :end-val="1361.8"
  19. :decimals="1"
  20. class="count"
  21. font-size="80rpx"
  22. bold
  23. />
  24. <text class="unit">km</text>
  25. </view>
  26. <view class="date">2023-2024</view>
  27. </view>
  28. <view class="statistics-row">
  29. <view
  30. v-for="(item, idx) in statisticsEnum"
  31. :key="idx"
  32. class="item"
  33. >
  34. <view class="label">{{ item.label }}</view>
  35. <view class="value">
  36. <u-count-to
  37. :start-val="0"
  38. :end-val="statisticsInfo[item.prop]"
  39. bold
  40. />
  41. {{ item.unit }}
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. <view ref="chartContainer" class="charts-container"></view>
  47. <view class="list-wrap">
  48. <view
  49. v-for="(item, idx) in cyclingRecord"
  50. :key="idx"
  51. class="list-item"
  52. >
  53. <view class="row top-row">
  54. <view>行驶里程
  55. <u-count-to
  56. :start-val="0"
  57. :end-val="54"
  58. :decimals="2"
  59. class="num"
  60. bold
  61. /> km
  62. </view>
  63. <view>2024-12-04 16:15</view>
  64. </view>
  65. <view class="row bottom-row">
  66. <text>功率: 30wh</text>
  67. <text>减少碳排放: 40g</text>
  68. <text>骑行时长: 00:20:31</text>
  69. </view>
  70. </view>
  71. </view>
  72. </view>
  73. </template>
  74. <script>
  75. // import * as echarts from 'echarts';
  76. export default {
  77. data() {
  78. return {
  79. chart: null,
  80. queryTypes: [],
  81. curType: '0',
  82. cyclingRecord: [
  83. {}, {}, {}
  84. ],
  85. statisticsInfo: {
  86. num: 9,
  87. power: '475',
  88. reduceEmissions: '996',
  89. cyclingDuration: 432
  90. }
  91. }
  92. },
  93. computed: {
  94. statisticsEnum() {
  95. const t = v => this.$t(v)
  96. return [
  97. { label: t('骑行次数'), unit: t('次'), prop: 'num' },
  98. { label: t('累计功率'), unit: 'wh', prop: 'power' },
  99. { label: t('减少排放量'), unit: 'g', prop: 'reduceEmissions' },
  100. { label: t('骑行时长'), unit: '天', prop: 'cyclingDuration' }
  101. ]
  102. }
  103. },
  104. created() {
  105. this._initQueryTypes()
  106. },
  107. mounted() {
  108. this.initChart()
  109. },
  110. methods: {
  111. _initQueryTypes() {
  112. this.queryTypes = [
  113. { label: '总', type: '0' },
  114. { label: '年', type: '1' },
  115. { label: '月', type: '2' },
  116. { label: '周', type: '3' },
  117. { label: '日', type: '4' }
  118. ]
  119. },
  120. changeType(type) {
  121. this.setData({
  122. curType: type
  123. })
  124. },
  125. initChart() {
  126. // this.chart = echarts.init(this.$refs.chartContainer);
  127. console.log(111, this.$refs.chartContainer)
  128. }
  129. }
  130. }
  131. </script>
  132. <style lang="scss" scoped>
  133. @import "@/libs/css/layout.scss";
  134. .mileage-statistics-page {
  135. padding: 24rpx 32rpx;
  136. background: #fff;
  137. min-height: 100vh;
  138. .search-type-wrap {
  139. background: #F4F5F6;
  140. border-radius: 16rpx;
  141. display: flex;
  142. padding: 4rpx;
  143. .item {
  144. display: flex;
  145. align-items: center;
  146. justify-content: center;
  147. width: 134rpx;
  148. height: 52rpx;
  149. border-radius: 12rpx;
  150. font-size: 28rpx;
  151. color: #060809;
  152. &.isActive {
  153. background: #FFFFFF;
  154. }
  155. }
  156. }
  157. .statistics-wrap {
  158. margin: 64rpx 0 0 0;
  159. .kilometers-row {
  160. display: flex;
  161. align-items: center;
  162. justify-content: space-between;
  163. .kilometers {
  164. .count {
  165. font-family: DIN, DIN;
  166. font-size: 80rpx;
  167. color: #060809;
  168. }
  169. .unit {
  170. font-weight: bold;
  171. font-size: 40rpx;
  172. margin-left: 16rpx;
  173. }
  174. }
  175. .date {
  176. font-family: Roboto, Roboto;
  177. font-weight: 400;
  178. font-size: 32rpx;
  179. color: #060809;
  180. }
  181. }
  182. .statistics-row {
  183. display: flex;
  184. justify-content: space-between;
  185. margin: 64rpx 0 102rpx;
  186. .item {}
  187. }
  188. }
  189. .charts-container {
  190. width: 100%;
  191. height: 250rpx;
  192. }
  193. .list-wrap {
  194. .list-item {
  195. margin-bottom: 70rpx;
  196. }
  197. .row {
  198. display: flex;
  199. align-items: center;
  200. justify-content: space-between;
  201. }
  202. .top-row {
  203. margin-bottom: 22rpx;
  204. font-size: 28rpx;
  205. color: #060809;
  206. .num {
  207. margin: 0 4rpx 0 8rpx;
  208. font-size: 44rpx;
  209. }
  210. }
  211. .bottom-row {
  212. font-size: 28rpx;
  213. color: #9D9E9F;
  214. }
  215. }
  216. }
  217. </style>