dashboard.vue 5.0 KB

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