From 58df0db9ec64f459cdc098c0b420994a2f81b0f4 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 9 Dec 2021 18:02:13 +0800 Subject: [PATCH] BUG 25336 --- src/apps/AppInterview/AppInterview.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/apps/AppInterview/AppInterview.vue b/src/apps/AppInterview/AppInterview.vue index 746ed5d4..d80e3cd9 100644 --- a/src/apps/AppInterview/AppInterview.vue +++ b/src/apps/AppInterview/AppInterview.vue @@ -73,9 +73,13 @@ export default { }, methods: { emitShow() { - document.title = "调查走访" - this.current = 1; - this.getList() + if (this.showDetail) { + + } else { + document.title = "调查走访" + this.current = 1; + this.getList() + } }, emitReachBottom() { this.current++; @@ -117,7 +121,7 @@ export default { }, handleDateSearch(v) { this.search.startTime = v?.startDate - this.search.endTime = v?.startDate|| v?.endDate + this.search.endTime = v?.startDate || v?.endDate this.current = 1 this.getList() }