dashboard.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <template>
  2. <view class="dashboard-page zx-page-linear">
  3. <view class="dashboard">
  4. <view class="shadow" :style="{ '--progress': progress + '%' }"></view>
  5. <view class="spe-wrap">
  6. <view class="spe-num">
  7. {{ infoList.speed }}
  8. </view>
  9. <view class="unit">km/h</view>
  10. </view>
  11. <view class="power-wrap">
  12. <u-count-to :startVal="0" bold :endVal="progress" fontSize="48rpx" />
  13. </view>
  14. </view>
  15. <view class="battery_life_progress">
  16. <view class="is_progress">
  17. <text>续航</text>
  18. <text>{{infoList.remain_mail}}km</text>
  19. </view>
  20. </view>
  21. <view class="info-container">
  22. <view class="info-wrap" v-for="(item, index) in infoList.list" :key="index">
  23. <view class="label">{{ item.label }}</view>
  24. <view class="value">{{ item.prop }} <text class="unit">{{ item.unit }}</text></view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. var config_gyq = require('../../common/config_gyq.js');
  31. var common = require('../../common/common.js');
  32. var request = require('../../common/request');
  33. export default {
  34. data() {
  35. return {
  36. speed: 50,
  37. infoList: {}
  38. }
  39. },
  40. computed: {
  41. progress() {
  42. const MAX_SPEED = 120;
  43. return this.infoList.speed / MAX_SPEED * 100
  44. }
  45. },
  46. created() {
  47. this._initInfoList()
  48. },
  49. methods: {
  50. async _initInfoList() {
  51. let car_sn = uni.getStorageSync('car_info').car_sn
  52. let {
  53. data
  54. } = await request.postApi(config_gyq.API_FLK_CAR_DASHBOARD, {
  55. car_sn
  56. })
  57. if (data.code == 200) {
  58. this.infoList = data.data.data
  59. this.infoList.list = [{
  60. label: '骑行里程',
  61. prop: this.infoList.current_mail || 0,
  62. unit: 'km'
  63. },
  64. {
  65. label: '骑行时长',
  66. prop: this.infoList.current_time || 0,
  67. unit: 'h'
  68. },
  69. {
  70. label: '最大速度',
  71. prop: this.infoList.max_speed || 0,
  72. unit: 'km/h'
  73. },
  74. {
  75. label: '平均速度',
  76. prop: this.infoList.avg_speed || 0,
  77. unit: 'km/h'
  78. },
  79. ]
  80. } else {
  81. common.simpleToast(data.msg)
  82. }
  83. }
  84. }
  85. }
  86. </script>
  87. <style lang="scss" scoped>
  88. @import "@/libs/css/layout.scss";
  89. .dashboard-page {
  90. padding: 24rpx 32rpx 0;
  91. min-height: calc(100vh - 100rpx);
  92. .dashboard {
  93. width: 554rpx;
  94. height: 554rpx;
  95. margin: 0 auto 58rpx;
  96. background: url('https://qiniu.bms16.com/Ftwa7u9tJYw3XSLaXYvrDyGNRuD5');
  97. background-size: 100%;
  98. position: relative;
  99. .shadow {
  100. box-shadow: inset 0rpx 2rpx 6rpx 0rpx #fff;
  101. width: 490rpx;
  102. height: 502rpx;
  103. position: relative;
  104. top: 20rpx;
  105. left: 50%;
  106. transform: translateX(-50%);
  107. border-radius: 50%;
  108. background: conic-gradient(from -122deg, #0A59F7 0%, #20FFCA var(--progress), #F3F8FF 0% 245deg, transparent 245deg 360deg);
  109. mask: radial-gradient(transparent 200rpx, #000 200rpx);
  110. -webkit-mask: radial-gradient(transparent 210rpx, #000 213rpx);
  111. }
  112. .spe-wrap {
  113. width: 218rpx;
  114. height: 218rpx;
  115. background: #0A59F7;
  116. border-radius: 50%;
  117. position: absolute;
  118. left: 50%;
  119. top: 50%;
  120. transform: translate(-50%, -50%);
  121. display: flex;
  122. align-items: center;
  123. justify-content: center;
  124. flex-direction: column;
  125. color: #fff;
  126. .spe-num {
  127. font-family: Futura, Futura;
  128. font-weight: bold;
  129. font-size: 80rpx;
  130. color: #FFFFFF;
  131. line-height: 64rpx;
  132. text-align: center;
  133. font-style: normal;
  134. margin-bottom: 16rpx;
  135. }
  136. .unit {
  137. line-height: 28rpx;
  138. font-style: italic;
  139. }
  140. }
  141. .power-wrap {
  142. width: 230rpx;
  143. height: 104rpx;
  144. background: #D6E7FF;
  145. border-radius: 64rpx;
  146. position: absolute;
  147. bottom: 22rpx;
  148. left: 50%;
  149. transform: translateX(-50%);
  150. display: flex;
  151. align-items: center;
  152. justify-content: center;
  153. font-family: Futura, Futura;
  154. font-weight: bold;
  155. font-size: 48rpx;
  156. color: #060809;
  157. }
  158. }
  159. .battery_life_progress {
  160. width: 100%;
  161. margin-bottom: 40rpx;
  162. background: #FFFFFF;
  163. border-radius: 40rpx;
  164. padding: 6rpx;
  165. overflow: hidden;
  166. .is_progress {
  167. width: 50%;
  168. height: 100%;
  169. padding: 16rpx 32rpx;
  170. background: #0A59F7;
  171. border-radius: 36rpx;
  172. display: flex;
  173. align-items: center;
  174. justify-content: space-between;
  175. color: #fff;
  176. font-size: 36rpx;
  177. }
  178. }
  179. .info-container {
  180. display: flex;
  181. flex-wrap: wrap;
  182. justify-content: space-between;
  183. .info-wrap {
  184. width: 336rpx;
  185. margin-bottom: 14rpx;
  186. background: #FFFFFF;
  187. border-radius: 40rpx;
  188. padding: 32rpx 24rpx;
  189. .label {
  190. font-size: 28rpx;
  191. color: #060809;
  192. margin-bottom: 24rpx;
  193. }
  194. .value {
  195. font-size: 48rpx;
  196. .unit {
  197. margin-left: 8rpx;
  198. font-size: 28rpx;
  199. }
  200. }
  201. }
  202. }
  203. }
  204. </style>