This commit is contained in:
wangshiming
2022-04-18 16:19:16 +08:00
parent e44e999251
commit 75aad09601
6 changed files with 294 additions and 43 deletions

View File

@ -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] || ''
},
};
}