fix bug
This commit is contained in:
@ -103,6 +103,18 @@ export class OrderManagementComplaintComponent implements OnInit {
|
||||
type: 'string',
|
||||
title: '投诉单号',
|
||||
},
|
||||
complaintCause: {
|
||||
title: '投诉原因',
|
||||
type: 'string',
|
||||
ui: {
|
||||
widget: 'dict-select',
|
||||
params: { dictKey: 'complaint:cause' },
|
||||
containsAllLabel: true,
|
||||
visibleIf: {
|
||||
_$expand: (value: boolean) => value
|
||||
}
|
||||
} as SFSelectWidgetSchema
|
||||
},
|
||||
complainantTime: {
|
||||
title: '投诉时间',
|
||||
type: 'string',
|
||||
@ -124,14 +136,14 @@ export class OrderManagementComplaintComponent implements OnInit {
|
||||
this.columns = [
|
||||
{
|
||||
title: '投诉单号',
|
||||
width: '170px',
|
||||
width: '200px',
|
||||
fixed: 'left',
|
||||
className: 'text-center',
|
||||
render: 'complaintCode'
|
||||
},
|
||||
{
|
||||
title: '运单号',
|
||||
width: '170px',
|
||||
width: '200px',
|
||||
className: 'text-center',
|
||||
index: 'wayBillCode'
|
||||
},
|
||||
@ -161,6 +173,12 @@ export class OrderManagementComplaintComponent implements OnInit {
|
||||
width: '200px',
|
||||
index:'handlePartyLabel'
|
||||
},
|
||||
{
|
||||
title: '处理时间',
|
||||
className: 'text-center',
|
||||
width: '200px',
|
||||
index:'handleTime'
|
||||
},
|
||||
{
|
||||
title: '处理结果',
|
||||
className: 'text-center',
|
||||
|
||||
Reference in New Issue
Block a user