This commit is contained in:
Taric Xin
2022-02-11 16:41:35 +08:00
parent 98f9799643
commit 3edbff21e4

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;
}; };