去掉了“查询轨迹”按钮

This commit is contained in:
2026-06-07 00:30:00 +08:00
parent 1e0aa8f637
commit 32bc572284
@@ -635,15 +635,12 @@ onBeforeUnmount(() => {
<div class="trajectory-toolbar">
<label class="trajectory-date-field">
<span>开始日期</span>
<input v-model="trajectoryStartDate" type="date" :disabled="trajectoryLoading" />
<input v-model="trajectoryStartDate" type="date" :disabled="trajectoryLoading" @change="loadTrajectoryRange" />
</label>
<label class="trajectory-date-field">
<span>结束日期</span>
<input v-model="trajectoryEndDate" type="date" :disabled="trajectoryLoading" />
<input v-model="trajectoryEndDate" type="date" :disabled="trajectoryLoading" @change="loadTrajectoryRange" />
</label>
<button type="button" :disabled="trajectoryLoading" @click="loadTrajectoryRange">
{{ trajectoryLoading ? '查询中...' : '查询轨迹' }}
</button>
<button type="button" :disabled="trajectoryLoading" @click="applyTodayTrajectory">今天</button>
<button type="button" :disabled="trajectoryLoading" @click="applyRecentTrajectory(3)">最近三天</button>
<button type="button" :disabled="trajectoryLoading" @click="applyRecentTrajectory(7)">最近七天</button>