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