This commit is contained in:
Taric Xin
2022-04-24 14:55:54 +08:00
parent 35f2487510
commit d8e297a648

View File

@ -28,7 +28,7 @@ export class ExpressInfoComponent implements OnInit {
} }
}, },
createTime: { createTime: {
title: '创建时间', title: '下单时间',
type: 'string', type: 'string',
ui: { ui: {
widget: 'sl-from-to-search', widget: 'sl-from-to-search',
@ -87,9 +87,9 @@ export class ExpressInfoComponent implements OnInit {
if (this.sf) { if (this.sf) {
Object.assign(requestOptions.body, { Object.assign(requestOptions.body, {
...this.sf.value, ...this.sf.value,
createtime: { createTime: {
start: this.sf.value.createtime?.[0] || null, start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createtime?.[1] || null end: this.sf.value.createTime?.[1] || ''
} }
}); });
} }