作者 小范

table新增运抵编号列

... ... @@ -179,17 +179,22 @@
<template slot-scope="scope">
<span>{{ scope.row.seqno }}</span>
</template>
</el-table-column>
<el-table-column label="转关方式" width="140">
</el-table-column>arriveno
<el-table-column label="运抵编号" width="150">
<template slot-scope="scope">
<span v-if="scope.row.trnmode ==='0'">非转关运抵模式</span>
<span v-if="scope.row.trnmode ==='1'">南方转关运抵模式</span>
<span v-if="scope.row.trnmode ==='2'">北方转关运抵模式</span>
<span v-if="scope.row.trnmode ==='3'">水运中转运抵模式</span>
<!-- <span>{{ scope.row.trnmode }}</span>-->
<span>{{ scope.row.arriveno }}</span>
</template>
</el-table-column>
<el-table-column label="申报地海关" width="100">
<!-- <el-table-column label="转关方式" width="140">-->
<!-- <template slot-scope="scope">-->
<!-- <span v-if="scope.row.trnmode ==='0'">非转关运抵模式</span>-->
<!-- <span v-if="scope.row.trnmode ==='1'">南方转关运抵模式</span>-->
<!-- <span v-if="scope.row.trnmode ==='2'">北方转关运抵模式</span>-->
<!-- <span v-if="scope.row.trnmode ==='3'">水运中转运抵模式</span>-->
<!--&lt;!&ndash; <span>{{ scope.row.trnmode }}</span>&ndash;&gt;-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="申报地海关" width="90">
<template slot-scope="scope">
<span>{{ scope.row.customscode }}</span>
</template>
... ...