BUG 25181

This commit is contained in:
aixianling
2021-12-02 11:50:35 +08:00
parent 88a02c0eee
commit 087011378c
2 changed files with 9 additions and 8 deletions

View File

@@ -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()
}