diff --git a/src/pages/vimp-log-page.vue b/src/pages/vimp-log-page.vue index 10fad8d..d7f69d9 100644 --- a/src/pages/vimp-log-page.vue +++ b/src/pages/vimp-log-page.vue @@ -77,7 +77,7 @@ const stationSelectOptions = computed(() => { const searchFields = reactive({ stationCode: undefined as string | undefined, logType_in: [] as number[], - createdTime: [dayjs().startOf('date').subtract(7, 'day').format('YYYY-MM-DD HH:mm:ss'), dayjs().endOf('date').format('YYYY-MM-DD HH:mm:ss')] as [string, string], + createdTime: [dayjs().startOf('date').subtract(1, 'week').format('YYYY-MM-DD HH:mm:ss'), dayjs().endOf('date').format('YYYY-MM-DD HH:mm:ss')] as [string, string], }); const resetSearchFields = () => { searchFields.stationCode = stationList.value.find((station) => station.online)?.code;