车辆接口更新

This commit is contained in:
wangshiming
2022-01-20 15:12:09 +08:00
parent d51c0d0801
commit a68612626b
3 changed files with 65 additions and 55 deletions

View File

@ -29,12 +29,12 @@ export class ETCInvoicedLogsComponent implements OnInit {
Object.assign(requestOptions.body, {
...this.sf.value,
exTime: {
start: this.sf.value.exTime?.[0] || null,
end: this.sf.value.exTime?.[1] || null
start: this.sf.value.exTime?.[0] || '',
end: this.sf.value.exTime?.[1] || ''
},
invoiceMakeTime: {
start: this.sf.value.invoiceMakeTime?.[0] || null,
end: this.sf.value.invoiceMakeTime?.[1] || null
start: this.sf.value.invoiceMakeTime?.[0] || '',
end: this.sf.value.invoiceMakeTime?.[1] || ''
}
});
}