优化
This commit is contained in:
parent
205b818168
commit
d8b9e4ef04
|
@ -1,4 +1,4 @@
|
||||||
import { isEmpty } from '@/utils/index'
|
import { isEmpty } from '@/utils/index';
|
||||||
|
|
||||||
const filters = {
|
const filters = {
|
||||||
// 金钱显示,保留两位小数
|
// 金钱显示,保留两位小数
|
||||||
|
@ -21,6 +21,12 @@ const filters = {
|
||||||
}
|
}
|
||||||
return num.toFixed(10);
|
return num.toFixed(10);
|
||||||
},
|
},
|
||||||
|
fix8(num) {
|
||||||
|
if (num == null) {
|
||||||
|
return num;
|
||||||
|
}
|
||||||
|
return num.toFixed(8);
|
||||||
|
},
|
||||||
dv(data) {
|
dv(data) {
|
||||||
return filters.defaultValue(data);
|
return filters.defaultValue(data);
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
<!-- 轨迹回放控制面板 -->
|
<!-- 轨迹回放控制面板 -->
|
||||||
<playback-panel
|
<playback-panel
|
||||||
v-show="isPlaybackVisible && locationLogList.length > 0"
|
v-show="isPlaybackVisible && locationLogList.length > 0"
|
||||||
|
:location-log-list="locationLogList"
|
||||||
:current-log="currentLog"
|
:current-log="currentLog"
|
||||||
:current-speed="currentSpeed"
|
:current-speed="currentSpeed"
|
||||||
:max-index="sortedLocationLogs.length - 1"
|
:max-index="sortedLocationLogs.length - 1"
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
<el-slider
|
<el-slider
|
||||||
:value="sliderValue"
|
:value="sliderValue"
|
||||||
:max="maxIndex"
|
:max="maxIndex"
|
||||||
:show-tooltip="false"
|
:format-tooltip="formatTooltip"
|
||||||
@input="handleSliderChange">
|
@input="handleSliderChange">
|
||||||
</el-slider>
|
</el-slider>
|
||||||
|
|
||||||
|
@ -65,6 +65,13 @@
|
||||||
{{ speed }}x
|
{{ speed }}x
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-button-group>
|
</el-button-group>
|
||||||
|
|
||||||
|
<el-button-group>
|
||||||
|
<el-button size="mini" icon="el-icon-arrow-left" @click="handlePrev">
|
||||||
|
</el-button>
|
||||||
|
<el-button size="mini" icon="el-icon-arrow-right" @click="handleNext">
|
||||||
|
</el-button>
|
||||||
|
</el-button-group>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
@ -94,6 +101,10 @@ export default {
|
||||||
currentIndex: {
|
currentIndex: {
|
||||||
type: Number,
|
type: Number,
|
||||||
required: true
|
required: true
|
||||||
|
},
|
||||||
|
locationLogList: {
|
||||||
|
type: Array,
|
||||||
|
default: () => []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
@ -102,6 +113,9 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
formatTooltip(value) {
|
||||||
|
return this.locationLogList?.[value]?.at;
|
||||||
|
},
|
||||||
handleSliderChange(index) {
|
handleSliderChange(index) {
|
||||||
this.$emit('slider-change', index);
|
this.$emit('slider-change', index);
|
||||||
},
|
},
|
||||||
|
@ -110,7 +124,17 @@ export default {
|
||||||
},
|
},
|
||||||
setPlaybackSpeed(speed) {
|
setPlaybackSpeed(speed) {
|
||||||
this.$emit('speed-change', speed);
|
this.$emit('speed-change', speed);
|
||||||
}
|
},
|
||||||
|
handlePrev() {
|
||||||
|
if (this.currentIndex > 0) {
|
||||||
|
this.$emit('slider-change', this.currentIndex - 1);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleNext() {
|
||||||
|
if (this.currentIndex < this.maxIndex) {
|
||||||
|
this.$emit('slider-change', this.currentIndex + 1);
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -149,6 +173,13 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.playback-controls {
|
.playback-controls {
|
||||||
|
.time-display {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #606266;
|
||||||
|
}
|
||||||
|
|
||||||
.el-slider {
|
.el-slider {
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
@ -161,6 +192,12 @@ export default {
|
||||||
.el-button {
|
.el-button {
|
||||||
padding: 7px 12px;
|
padding: 7px 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.el-button-group {
|
||||||
|
.el-button {
|
||||||
|
margin-left: -1px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,13 +47,13 @@
|
||||||
<div class="log-info">
|
<div class="log-info">
|
||||||
<span class="info-item">
|
<span class="info-item">
|
||||||
<i class="el-icon-location"></i>
|
<i class="el-icon-location"></i>
|
||||||
{{ log.longitude.toFixed(8) }}, {{ log.latitude.toFixed(8) }}
|
{{ log.longitude | fix8 | dv }}, {{ log.latitude | fix8 | dv}}
|
||||||
</span>
|
</span>
|
||||||
<span class="info-item">
|
<span class="info-item">
|
||||||
<i class="el-icon-odometer"></i>
|
<i class="el-icon-odometer"></i>
|
||||||
{{ log.voltage | fix2 }}V
|
{{ log.voltage | fix2 | dv }}V
|
||||||
</span>
|
</span>
|
||||||
<span class="info-item">{{ log.sn }}</span>
|
<span class="info-item">{{ log.sn | dv }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="group.hasMore" class="load-more" @click="loadMoreLogs(groupIndex)">
|
<div v-if="group.hasMore" class="load-more" @click="loadMoreLogs(groupIndex)">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user