From 1c433cbb7ce3c0ac74fb617cc5812c528c55d697 Mon Sep 17 00:00:00 2001 From: Wangjunqi123 Date: Wed, 15 Nov 2023 09:18:57 +0800 Subject: [PATCH] adjust datepicker size --- web/src/App.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/web/src/App.vue b/web/src/App.vue index 7a07698..66225b6 100755 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -30,8 +30,6 @@ @@ -41,7 +39,7 @@ 时间 + start-placeholder="开始日期" end-placeholder="结束日期" @change="changeDate" size="small"> @@ -71,7 +69,7 @@ import { pickerOptions } from '@/utils/datePicker'; const node_list = reactive([]) const time_list = reactive(["1699595594", "1699595668", "1699595751"]) -const interval_list = reactive(["5s", "15s", "1m", "5m"]) +const interval_list = reactive(["关闭", "5s", "10s", "15s", "1m", "5m"]) let dateRange = ref([new Date() as any - 2 * 60 * 60 * 1000, new Date() as any - 0]) const startTime = ref(0); -- Gitee