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