|
@@ -185,7 +185,11 @@ const tableFormatter: CommonTableFormatter = (
|
|
|
}
|
|
|
}
|
|
|
if (column.property === 'nodeCode') {
|
|
|
- if (props.name.includes('InternationalDeparture') && value === 'LS_CARGO') {
|
|
|
+ if (
|
|
|
+ props.name.includes('International') &&
|
|
|
+ props.name.includes('Departure') &&
|
|
|
+ value === 'LS_CARGO'
|
|
|
+ ) {
|
|
|
return '实配'
|
|
|
}
|
|
|
return NODE_CODE[value] ?? value
|