fix bug
This commit is contained in:
@ -78,13 +78,21 @@ export class WaybillManagementAbnormalAppearComponent implements OnInit {
|
||||
get reqParams() {
|
||||
return {
|
||||
...this.sf?.value,
|
||||
replyStatus: this.resourceStatus || 0
|
||||
replyStatus: this.resourceStatus || 0,
|
||||
reportingTime: {
|
||||
start: this.sf?.value?.reportingTime?.[0] || '',
|
||||
end: this.sf?.value?.reportingTime?.[1] || ''
|
||||
},
|
||||
};
|
||||
}
|
||||
get reqParams2() {
|
||||
return {
|
||||
...this.sf?.value,
|
||||
replyStatus: this.resourceStatus || 1
|
||||
replyStatus: this.resourceStatus || 1,
|
||||
reportingTime: {
|
||||
start: this.sf?.value?.reportingTime?.[0] || '',
|
||||
end: this.sf?.value?.reportingTime?.[1] || ''
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user