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