|
@@ -47,11 +47,7 @@
|
|
|
color="#ac014d"
|
|
|
@click="refreshHandler"
|
|
|
/> -->
|
|
|
- <el-button
|
|
|
- class="button-sqaure"
|
|
|
- color="#ac014d"
|
|
|
- @click="exportHandler"
|
|
|
- >
|
|
|
+ <el-button class="button-sqaure" color="#ac014d" @click="exportHandler">
|
|
|
<i class="icon-export" />
|
|
|
</el-button>
|
|
|
<ColumnSet
|
|
@@ -148,6 +144,7 @@ const tableFormatter: CommonTableFormatter = (
|
|
|
cellValue,
|
|
|
index
|
|
|
) => {
|
|
|
+ const value = String(cellValue ?? '').trim()
|
|
|
if (column.property === 'execResult') {
|
|
|
const execResult = Number(cellValue)
|
|
|
if (Number.isNaN(execResult)) {
|
|
@@ -155,7 +152,6 @@ const tableFormatter: CommonTableFormatter = (
|
|
|
}
|
|
|
return execResult ? '通过' : '未通过'
|
|
|
}
|
|
|
- const value = String(cellValue ?? '').trim()
|
|
|
if (column.property.includes('Time')) {
|
|
|
return datetimeToTime(value, flightDate as CommonValue)
|
|
|
}
|
|
@@ -194,6 +190,9 @@ const tableFormatter: CommonTableFormatter = (
|
|
|
}
|
|
|
return NODE_CODE[value] ?? value
|
|
|
}
|
|
|
+ if (column.property === 'typeCode' && props.name.includes('International')) {
|
|
|
+ return value || '拼货'
|
|
|
+ }
|
|
|
return value
|
|
|
}
|
|
|
|