dashboard.vue 5.6 KB

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