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: {
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()
}