时间选择组件传时间数组

43 阅读1分钟
console.log(this.queryForm.timeArr)
if (this.queryForm.timeArr && this.queryForm.timeArr instanceof AArray && this.queryForm.timeArr.length > 0) {
  this.queryForm.startTime = this.queryForm.timeArr[0]
  this.queryForm.endTime = this.queryForm.timeArr[1]
} else {
  this.queryForm.startTime = null
  this.queryForm.endTime = null
}