Commit 4cf569e0 authored by xxx's avatar xxx

1

parent 5ca0e7a3
......@@ -26,7 +26,16 @@
<br>
<el-form-item label="轨迹时间点" style="display: inline-block;">
<el-date-picker v-model="trajectoryTimePoint" type="datetime" :placeholder="trajectoryTimePointPlaceholder"></el-date-picker>
<el-date-picker
v-model="trajectoryTimePoint"
type="datetime"
:placeholder="trajectoryTimePointPlaceholder"
:picker-options="{
disabledDate (time) {
return time.getTime() >= query.eTime || time.getTime() < query.bTime//选当前时间之前的时间
}
}"
></el-date-picker>
</el-form-item>
<el-button style="display: inline-block;" @click="pauseResume()">{{pauseResumeBoolean ? '暂停' : '继续'}}</el-button>
......
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