...
|
...
|
@@ -33,10 +33,10 @@ |
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="primary" size="mini" @click="handlePre(scope.row)">预配舱单</el-button>
|
|
|
<el-button type="primary" size="mini" @click="handleArrive(scope.row)">出港运抵</el-button>
|
|
|
<el-button type="primary" size="mini" @click="handleLoading(scope.row)">装载舱单</el-button>
|
|
|
<el-button type="primary" size="mini" @click="handleTidy(scope.row)">出港理货</el-button>
|
|
|
<el-button type="primary" size="mini" @click="handleArrive(scope.row)">出港运抵</el-button>
|
|
|
<el-button type="primary" size="mini" @click="handlePre(scope.row)">预配舱单</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
...
|
...
|
@@ -79,18 +79,26 @@ |
|
|
},
|
|
|
handleLoading(row) {
|
|
|
row.messageType = 'MT4201'
|
|
|
row.flightdate = row.flightDate
|
|
|
row.flightno = row.flightNo
|
|
|
this.$router.push({name: '出港航班信息', params: {scopeRow: row}})
|
|
|
},
|
|
|
handleTidy(row) {
|
|
|
row.messageType = 'MT5201'
|
|
|
row.flightdate = row.flightDate
|
|
|
row.flightno = row.flightNo
|
|
|
this.$router.push({name: '出港航班信息', params: {scopeRow: row}})
|
|
|
},
|
|
|
handleArrive(row) {
|
|
|
row.messageType = 'MT3201'
|
|
|
row.flightdate = row.flightDate
|
|
|
row.flightno = row.flightNo
|
|
|
this.$router.push({name: '出港航班信息', params: {scopeRow: row}})
|
|
|
},
|
|
|
handlePre(row) {
|
|
|
row.messageType = 'MT2201'
|
|
|
row.flightdate = row.flightDate
|
|
|
row.flightno = row.flightNo
|
|
|
this.$router.push({name: '出港航班信息', params: {scopeRow: row}})
|
|
|
}
|
|
|
}
|
...
|
...
|
|