Commit 5ca0e7a3 authored by xxx's avatar xxx

1

parent fdfac468
......@@ -26,7 +26,7 @@
<br>
<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-button style="display: inline-block;" @click="pauseResume()">{{pauseResumeBoolean ? '暂停' : '继续'}}</el-button>
......@@ -94,6 +94,7 @@ export default {
leadTime:false,
//轨迹时间点
trajectoryTimePoint:'',
trajectoryTimePointPlaceholder:'轨迹时间点',
//右侧播放时间列表
playtimeTableData:[],
//暂停继续按钮判断
......@@ -225,6 +226,7 @@ export default {
this.trajectoryTableData = [];
this.playtimeTableData = [];
this.trajectoryTimePoint = '';
this.trajectoryTimePointPlaceholder = '轨迹时间点';
this.loadData();
this.tishiTextShow = true;
this.shuaxinTimer = new Date().getTime();
......@@ -317,7 +319,7 @@ export default {
//接收当前进度时间
progressTimeFn(time){
//console.log(time);
this.trajectoryTimePoint = time;
this.trajectoryTimePointPlaceholder = time;
},
// 地图构造完成回调
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