作者 shenhailong

整套出港业务以及收发货人 样式优化

修改 跳转页面数据 不刷新问题
... ... @@ -88,7 +88,7 @@
<span>{{scope.row.endtime}}</span>
</template>
</el-table-column>
<el-table-column label="状态" width="100" align="center">
<el-table-column label="状态" width="200" align="center">
<template slot-scope="scope">
<span v-if="scope.row.status ==='01'">接受申报</span>
<span v-if="scope.row.status ==='02'">待人工审核</span>
... ... @@ -112,7 +112,7 @@
<span v-if="scope.row.status ==='25'">已发送修改报</span>
</template>
</el-table-column>
<el-table-column label="回执信息" show-overflow-tooltip width="230" align="center" show-overflow-tooltip>
<el-table-column label="回执信息" show-overflow-tooltip width="300" align="center" show-overflow-tooltip>
<template slot-scope="scope">
<el-tag v-if="scope.row.status=='01' || scope.row.status=='11'" type="success">
{{scope.row.ext5}}
... ... @@ -128,20 +128,23 @@
</el-tag>
</template>
</el-table-column>
<el-table-column prop="operation" label="操作" width="420px" align="center">
<el-table-column prop="operation" label="操作" width="400px" align="center">
<template slot-scope="scope">
<el-row type="flex" justify="space-between">
<el-button size="mini" icon="el-icon-view" @click="handleSend(scope.row)">收发明细</el-button>
<el-button size="mini" inco="el-icon-s-promotion" type="primary" @click="handleAwbSend(scope.row)"
:disabled="addStatus(scope.row.status)">港理货申报</el-button>
<el-button size="mini" type="danger" icon="el-icon-plus" v-if="isAdmin" @click="handleAwbDelete(scope.row)">删除运单</el-button>
<p></p>
<el-button size="mini" type="warning" @click="handleAwbStatus(scope.row)"
:disabled="scope.row.status ==='22'">更改状态</el-button>
<el-button size="mini" type="success" icon="el-icon-plus" v-if="scope.row.awbh ===''"
@click="handleAddAwbh(scope.row)">新增分单</el-button>
<el-button size="mini" type="danger" icon="el-icon-delete" v-if="isAdmin" @click="handleAwbDelete(scope.row)">删除运单</el-button>
</el-row>
<el-row type="flex" justify="space-between">
<el-button size="mini" icon="el-icon-plus" type="primary" @click="handleAwbSend(scope.row)"
:disabled="addStatus(scope.row.status)">理货申报</el-button>
<el-button size="mini" type="warning" icon="el-icon-edit" @click="handleAwbStatus(scope.row)"
:disabled="scope.row.status ==='22'">更改状态</el-button>
<el-button size="mini" type="danger" icon="el-icon-delete" @click="handleSendDelete(scope.row)"
:disabled="deleteStatus(scope.row.status)">删除申报</el-button>
</el-row>
</template>
</el-table-column>
</el-table>
... ...