From b89344c93958897dba207be81833e9705294411d Mon Sep 17 00:00:00 2001 From: lin <648540858@qq.com> Date: Wed, 8 Apr 2026 14:36:05 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=8A=A5=E8=AD=A6=E8=A7=86?= =?UTF-8?q?=E9=A2=91=E5=9B=9E=E6=94=BE=E6=97=B6=E9=97=B4=E8=8C=83=E5=9B=B4?= =?UTF-8?q?=E8=87=B3=E5=89=8D=E5=90=8E=E5=90=8410=E7=A7=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/views/alarm/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/views/alarm/index.vue b/web/src/views/alarm/index.vue index a58df889f..141b82144 100644 --- a/web/src/views/alarm/index.vue +++ b/web/src/views/alarm/index.vue @@ -298,10 +298,10 @@ export default { this.playbackVideoUrl = null this.currentPlaybackChannelId = row.channelId - // 开始时间:报警时间前30秒,结束时间:报警时间后30秒(共1分钟) + // 开始时间:报警时间前10秒,结束时间:报警时间后10秒(共20秒) const alarmTs = row.alarmTime - const startTime = formatDatetime(alarmTs - 30 * 1000) - const endTime = formatDatetime(alarmTs + 30 * 1000) + const startTime = formatDatetime(alarmTs - 10 * 1000) + const endTime = formatDatetime(alarmTs + 10 * 1000) this.$store.dispatch('commonChanel/playback', { channelId: row.channelId,