Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
wangshiming
2022-02-11 17:07:32 +08:00

View File

@ -39,6 +39,14 @@ export class ReceiptOrderComponent implements OnInit {
} }
}); });
} }
if (this.sf.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
}
});
}
} }
return requestOptions; return requestOptions;
}; };