作者 小范

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

... ... @@ -72,6 +72,29 @@
width="120">
</el-table-column>
<el-table-column
label="目的站"
prop="eairportid"
width="120">
</el-table-column>
<el-table-column
label="运单状态"
width="120">
<template slot-scope="scope">
<span v-if="scope.row.status=='30'">
正常
</span>
<span v-else-if="scope.row.status=='31'">
未理货
</span>
<span v-else-if="scope.row.status=='33'">
无原始
</span>
<span v-else >
未知
</span>
</template>
</el-table-column>
<el-table-column
label="货物描述"
prop="goodsname">
</el-table-column>
... ...