From 087011378c7346e3de141c4721424dd737b1bba7 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 2 Dec 2021 11:50:35 +0800 Subject: [PATCH] BUG 25181 --- src/apps/AppInterview/AppInterview.vue | 5 +++-- src/components/AiDate.vue | 12 ++++++------ 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/apps/AppInterview/AppInterview.vue b/src/apps/AppInterview/AppInterview.vue index ab3ed1c7..b52f7eb8 100644 --- a/src/apps/AppInterview/AppInterview.vue +++ b/src/apps/AppInterview/AppInterview.vue @@ -116,8 +116,9 @@ export default { }) }, handleDateSearch(v) { - this.search.startTime = v?.[0] - this.search.endTime = v?.[0] || v?.[1] + console.log(v) + this.search.startTime = v?.startDate + this.search.endTime = v?.startDate|| v?.endDate this.current = 1 this.getList() } diff --git a/src/components/AiDate.vue b/src/components/AiDate.vue index 306fd0f6..f31302db 100644 --- a/src/components/AiDate.vue +++ b/src/components/AiDate.vue @@ -1,7 +1,7 @@