|
@@ -2,7 +2,7 @@
|
|
|
<view class="dashboard-page zx-page-linear">
|
|
|
<navBar bgColor="transparent"></navBar>
|
|
|
<view class="dashboard">
|
|
|
- <view class="shadow" :style="{ '--progress': progress || 0 + '%' }"></view>
|
|
|
+ <view class="shadow" :style="{ '--progress': `${progress || 0}%` }"></view>
|
|
|
<view class="spe-wrap">
|
|
|
<view class="spe-num">
|
|
|
{{ infoList.speed || 0 }}
|
|
@@ -11,12 +11,12 @@
|
|
|
</view>
|
|
|
<view class="power-wrap">
|
|
|
<u-count-to :startVal="0" bold :endVal="progress || 0" fontSize="48rpx" />
|
|
|
+ <view class="em">W</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
<view class="battery_life_progress">
|
|
|
<view>
|
|
|
- <view :style="{width:((infoList.remain_mail || 0 / infoList.endurance || 0) * 100) + '%'}"
|
|
|
+ <view :style="{width:(((infoList.remain_mail || 0) / (infoList.endurance /1000) || 0) * 100) + '%'}"
|
|
|
class="is_progress"></view>
|
|
|
<view class="text">
|
|
|
<text style="margin-left: 20rpx;">续航</text>
|
|
@@ -25,12 +25,10 @@
|
|
|
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view style="font-weight: 600;font-size: 36rpx;">
|
|
|
- {{ ((infoList.remain_mail || 0 / infoList.endurance || 0) * 100) + '%' }}
|
|
|
+ <view style="font-weight: 600;font-size: 36rpx;position: relative;z-index: 99;">
|
|
|
+ {{ (((infoList.remain_mail || 0) / (infoList.endurance /1000) || 0) * 100).toFixed(0) + '%' }}
|
|
|
</view>
|
|
|
-
|
|
|
</view>
|
|
|
-
|
|
|
<view class="info-container">
|
|
|
<view class="info-wrap" v-for="(item, index) in infoList.list" :key="index">
|
|
|
<view class="label">{{ item.label }}</view>
|
|
@@ -49,6 +47,7 @@
|
|
|
data() {
|
|
|
return {
|
|
|
speed: 50,
|
|
|
+ time:null,
|
|
|
infoList: {}
|
|
|
}
|
|
|
},
|
|
@@ -58,14 +57,24 @@
|
|
|
return this.infoList.speed / MAX_SPEED * 100
|
|
|
}
|
|
|
},
|
|
|
- created() {
|
|
|
+ onLoad() {
|
|
|
let car_sn = uni.getStorageSync('car_info').car_sn
|
|
|
if (car_sn) {
|
|
|
this._initInfoList()
|
|
|
+ this.time = setInterval(()=>{
|
|
|
+ this._initInfoList()
|
|
|
+ },3000)
|
|
|
}
|
|
|
-
|
|
|
+ },
|
|
|
+ onUnload() {
|
|
|
+ this.clearIntervalTimer()
|
|
|
},
|
|
|
methods: {
|
|
|
+ clearIntervalTimer() {
|
|
|
+ if (this.time == null) return
|
|
|
+ clearInterval(this.time)
|
|
|
+ this.time = null
|
|
|
+ },
|
|
|
async _initInfoList() {
|
|
|
let car_sn = uni.getStorageSync('car_info').car_sn
|
|
|
let {
|
|
@@ -82,7 +91,7 @@
|
|
|
},
|
|
|
{
|
|
|
label: '骑行时长',
|
|
|
- prop: this.infoList.current_time || 0,
|
|
|
+ prop: (this.infoList.current_time / 60 /60).toFixed(2) || 0,
|
|
|
unit: 'h'
|
|
|
},
|
|
|
{
|
|
@@ -172,7 +181,7 @@
|
|
|
background: #D6E7FF;
|
|
|
border-radius: 64rpx;
|
|
|
position: absolute;
|
|
|
- bottom: 22rpx;
|
|
|
+ bottom: 72rpx;
|
|
|
left: 50%;
|
|
|
transform: translateX(-50%);
|
|
|
display: flex;
|
|
@@ -182,6 +191,22 @@
|
|
|
font-weight: bold;
|
|
|
font-size: 48rpx;
|
|
|
color: #060809;
|
|
|
+ position: relative;
|
|
|
+ .em{
|
|
|
+ position: absolute;
|
|
|
+ right: -10rpx;
|
|
|
+ top: 0;
|
|
|
+ width: 54rpx;
|
|
|
+ height: 32rpx;
|
|
|
+ background: #0A59F7;
|
|
|
+ border-radius: 16rpx;
|
|
|
+ font-size: 22rpx;
|
|
|
+ line-height: 1;
|
|
|
+ color: #fff;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|