-
diff --git a/src/app/routes/waybill-management/components/abnormal-appear/abnormal-appear.component.ts b/src/app/routes/waybill-management/components/abnormal-appear/abnormal-appear.component.ts
index 5f02d97d..36fe755a 100644
--- a/src/app/routes/waybill-management/components/abnormal-appear/abnormal-appear.component.ts
+++ b/src/app/routes/waybill-management/components/abnormal-appear/abnormal-appear.component.ts
@@ -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] || ''
+ },
};
}