...
|
...
|
@@ -121,7 +121,7 @@ |
|
|
label="舱单件数"
|
|
|
width="80">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.piece || scope.row.awbinfo.pcs || scope.row.piece != scope.row.awbinfo.pcs" style="color: #ff4d51;font-weight: bold">
|
|
|
<span v-if="scope.row.piece != scope.row.awbinfo.pcs" style="color: #ff4d51;font-weight: bold">
|
|
|
{{scope.row.piece}}
|
|
|
</span>
|
|
|
<span v-else>
|
...
|
...
|
@@ -134,7 +134,7 @@ |
|
|
label="舱单重量"
|
|
|
width="100">
|
|
|
<template slot-scope="scope" style="text-align: center">
|
|
|
<span v-if="scope.row.weight || scope.row.awbinfo.weight || scope.row.weight != scope.row.awbinfo.weight" style="color: #ff4d51;font-weight: bold">
|
|
|
<span v-if="scope.row.weight != scope.row.awbinfo.weight" style="color: #ff4d51;font-weight: bold">
|
|
|
{{scope.row.weight}}
|
|
|
</span>
|
|
|
<span v-else>
|
...
|
...
|
|