车辆接口更新

This commit is contained in:
wangshiming
2022-01-19 13:54:44 +08:00
parent 7c8578a106
commit 2c208636e6

View File

@ -68,13 +68,19 @@ export class OrderManagementComplaintComponent implements OnInit {
* 查询参数 * 查询参数
*/ */
get reqParams() { get reqParams() {
const a:any = {}; const a: any = {};
if(this.resourceStatus) { if(this.resourceStatus) {
a.complaintStatus = this.resourceStatus a.complaintStatus = this.resourceStatus
} }
const params: any = Object.assign({}, this.sf?.value || {});
delete params._$expand;
return { return {
...a, ...a,
...this.sf?.value, ...params,
complainantTime: {
start: this.sf?.value?.complainantTime?.[0] || '',
end: this.sf?.value?.complainantTime?.[1] || ''
}
}; };
} }
get selectedRows() { get selectedRows() {
@ -98,7 +104,7 @@ export class OrderManagementComplaintComponent implements OnInit {
type: 'string', type: 'string',
title: '投诉单号', title: '投诉单号',
}, },
createTime: { complainantTime: {
title: '投诉时间', title: '投诉时间',
type: 'string', type: 'string',
ui: { ui: {