作者 shenhailong

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

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