Commit 5ca0e7a3 authored by xxx's avatar xxx

1

parent fdfac468
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<br> <br>
<el-form-item label="轨迹时间点" style="display: inline-block;"> <el-form-item label="轨迹时间点" style="display: inline-block;">
<el-input v-model="trajectoryTimePoint"></el-input> <el-date-picker v-model="trajectoryTimePoint" type="datetime" :placeholder="trajectoryTimePointPlaceholder"></el-date-picker>
</el-form-item> </el-form-item>
<el-button style="display: inline-block;" @click="pauseResume()">{{pauseResumeBoolean ? '暂停' : '继续'}}</el-button> <el-button style="display: inline-block;" @click="pauseResume()">{{pauseResumeBoolean ? '暂停' : '继续'}}</el-button>
...@@ -94,6 +94,7 @@ export default { ...@@ -94,6 +94,7 @@ export default {
leadTime:false, leadTime:false,
//轨迹时间点 //轨迹时间点
trajectoryTimePoint:'', trajectoryTimePoint:'',
trajectoryTimePointPlaceholder:'轨迹时间点',
//右侧播放时间列表 //右侧播放时间列表
playtimeTableData:[], playtimeTableData:[],
//暂停继续按钮判断 //暂停继续按钮判断
...@@ -225,6 +226,7 @@ export default { ...@@ -225,6 +226,7 @@ export default {
this.trajectoryTableData = []; this.trajectoryTableData = [];
this.playtimeTableData = []; this.playtimeTableData = [];
this.trajectoryTimePoint = ''; this.trajectoryTimePoint = '';
this.trajectoryTimePointPlaceholder = '轨迹时间点';
this.loadData(); this.loadData();
this.tishiTextShow = true; this.tishiTextShow = true;
this.shuaxinTimer = new Date().getTime(); this.shuaxinTimer = new Date().getTime();
...@@ -317,7 +319,7 @@ export default { ...@@ -317,7 +319,7 @@ export default {
//接收当前进度时间 //接收当前进度时间
progressTimeFn(time){ progressTimeFn(time){
//console.log(time); //console.log(time);
this.trajectoryTimePoint = time; this.trajectoryTimePointPlaceholder = time;
}, },
// 地图构造完成回调 // 地图构造完成回调
onMapload(map) { onMapload(map) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment