dashboard.vue 6.2 KB

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