BUG 25336

This commit is contained in:
aixianling
2021-12-09 18:02:13 +08:00
parent d1fe157ab4
commit 58df0db9ec

View File

@@ -73,9 +73,13 @@ export default {
}, },
methods: { methods: {
emitShow() { emitShow() {
document.title = "调查走访" if (this.showDetail) {
this.current = 1;
this.getList() } else {
document.title = "调查走访"
this.current = 1;
this.getList()
}
}, },
emitReachBottom() { emitReachBottom() {
this.current++; this.current++;
@@ -117,7 +121,7 @@ export default {
}, },
handleDateSearch(v) { handleDateSearch(v) {
this.search.startTime = v?.startDate this.search.startTime = v?.startDate
this.search.endTime = v?.startDate|| v?.endDate this.search.endTime = v?.startDate || v?.endDate
this.current = 1 this.current = 1
this.getList() this.getList()
} }