自动派单不显示抢单、派单按钮
This commit is contained in:
@@ -56,7 +56,7 @@ export const columns: VxeGridProps['columns'] = [
|
||||
field: 'reportingType',
|
||||
slots: {
|
||||
default: ({row}) => {
|
||||
return renderDict(row.reportingType, 'wy_gdsblx');
|
||||
return row.reportingType!=null?renderDict(row.reportingType, 'wy_gdsblx'):'';
|
||||
},
|
||||
},
|
||||
width: 100,
|
||||
@@ -86,7 +86,7 @@ export const columns: VxeGridProps['columns'] = [
|
||||
field: 'processingWeight',
|
||||
slots: {
|
||||
default: ({row}) => {
|
||||
return renderDict(row.processingWeight, 'pro_processing_weight');
|
||||
return row.processingWeight!=null?renderDict(row.processingWeight, 'pro_processing_weight'):'';
|
||||
},
|
||||
},
|
||||
width: 100,
|
||||
|
Reference in New Issue
Block a user