查询时bug修复
This commit is contained in:
parent
9bb9a57f90
commit
cb32d6ebcf
|
|
@ -161,8 +161,8 @@ export default {
|
|||
try {
|
||||
const params = {
|
||||
...this.queryParams,
|
||||
startTime: this.timeRange[0] || '',
|
||||
endTime: this.timeRange[1] || ''
|
||||
startTime: this.timeRange ? this.timeRange[0] : '',
|
||||
endTime: this.timeRange ? this.timeRange[1] : ''
|
||||
}
|
||||
const res = await getDirectAuditListApi(params)
|
||||
this.tableList = res.rows
|
||||
|
|
|
|||
|
|
@ -161,8 +161,8 @@ export default {
|
|||
try {
|
||||
const params = {
|
||||
...this.queryParams,
|
||||
startTime: this.timeRange[0] || '',
|
||||
endTime: this.timeRange[1] || ''
|
||||
startTime: this.timeRange ? this.timeRange[0] : '',
|
||||
endTime: this.timeRange ? this.timeRange[1] : ''
|
||||
}
|
||||
const res = await getReceiveApplyApi(params)
|
||||
this.tableList = res.data.rows
|
||||
|
|
|
|||
Loading…
Reference in New Issue