dashboard.vue 5.1 KB

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