|
@@ -208,8 +208,8 @@
|
|
|
let params = {
|
|
|
'current': this.pageIndex,
|
|
|
'size': this.pageSize,
|
|
|
- 'beginTime': this.dataForm.date[0],
|
|
|
- 'endTime': this.dataForm.date[1],
|
|
|
+ 'beginTime': this.dataForm.date ? this.dataForm.date[0] : null,
|
|
|
+ 'endTime': this.dataForm.date ? this.dataForm.date[1] : null,
|
|
|
'recordType': this.dataForm.recordType ? this.dataForm.recordType : null,
|
|
|
'recordCode': this.dataForm.recordCode ? this.dataForm.recordCode : null,
|
|
|
'userId': this.dataForm.userId ? this.dataForm.userId : null
|