dashboard.vue 5.0 KB

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