...
|
...
|
@@ -70,11 +70,11 @@ |
|
|
<span>{{scope.row.awbh}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="运单件数/重量" width="100" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.awbpiece}} / {{scope.row.awbweight}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column label="运单件数/重量" width="100" align="center">-->
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
<!-- <span>{{scope.row.awbpiece}} / {{scope.row.awbweight}}</span>-->
|
|
|
<!-- </template>-->
|
|
|
<!-- </el-table-column>-->
|
|
|
<el-table-column label="理货件数/重量" width="100" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.piece}} / {{scope.row.weight}}</span>
|
...
|
...
|
@@ -108,18 +108,18 @@ |
|
|
<span v-if="scope.row.status ==='25'">已发送修改报</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="回执信息" show-overflow-tooltip width="300" align="center">
|
|
|
<el-table-column label="回执信息" show-overflow-tooltip width="230" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.ext5}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="operation" label="操作" align="center">
|
|
|
<el-table-column prop="operation" label="操作" width="420px" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button size="mini" @click="handleSend(scope.row)">收发明细</el-button>
|
|
|
<el-button size="mini" type="success" @click="handleEdit(scope.row)">编辑</el-button>
|
|
|
<el-button size="mini" type="primary" @click="handleAwbSend(scope.row)"
|
|
|
:disabled="addStatus(scope.row.status)">发送出港理货报</el-button>
|
|
|
<!-- :disabled="scope.row.status ==='23'">发舱单报</el-button>-->
|
|
|
|
|
|
<el-button size="mini" type="danger" v-if="isAdmin" @click="handleAwbDelete(scope.row)">删除运单</el-button>
|
|
|
<p></p>
|
|
|
<el-button size="mini" type="warning" @click="handleAwbStatus(scope.row)"
|
...
|
...
|
@@ -128,7 +128,6 @@ |
|
|
@click="handleAddAwbh(scope.row)">新增分单</el-button>
|
|
|
<el-button size="mini" type="danger" @click="handleSendDelete(scope.row)"
|
|
|
:disabled="deleteStatus(scope.row.status)">发出港理货删除报</el-button>
|
|
|
<!-- :disabled="scope.row.status ==='24'">发删除报</el-button>-->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
...
|
...
|
|