作者 小范

进港快件运单查询table增加运单状态

@@ -72,6 +72,29 @@ @@ -72,6 +72,29 @@
72 width="120"> 72 width="120">
73 </el-table-column> 73 </el-table-column>
74 <el-table-column 74 <el-table-column
  75 + label="目的站"
  76 + prop="eairportid"
  77 + width="120">
  78 + </el-table-column>
  79 + <el-table-column
  80 + label="运单状态"
  81 + width="120">
  82 + <template slot-scope="scope">
  83 + <span v-if="scope.row.status=='30'">
  84 + 正常
  85 + </span>
  86 + <span v-else-if="scope.row.status=='31'">
  87 + 未理货
  88 + </span>
  89 + <span v-else-if="scope.row.status=='33'">
  90 + 无原始
  91 + </span>
  92 + <span v-else >
  93 + 未知
  94 + </span>
  95 + </template>
  96 + </el-table-column>
  97 + <el-table-column
75 label="货物描述" 98 label="货物描述"
76 prop="goodsname"> 99 prop="goodsname">
77 </el-table-column> 100 </el-table-column>