dashboard.vue 5.4 KB

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