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 @@