...
|
...
|
@@ -12,13 +12,13 @@ |
|
|
<el-table :data="flightData" stripe style="font-size: 14px" border>
|
|
|
<el-table-column label="航班号" width="180px" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.carrier }}{{ scope.row.flightNo }}</span>
|
|
|
<span>{{ scope.row.carrier }}{{ scope.row.flightno }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="航班日期" width="190px" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<i class="el-icon-time"></i>
|
|
|
<span>{{ scope.row.flightDate }}</span>
|
|
|
<span>{{ scope.row.flightdate }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="始发站" width="160px" align="center">
|
...
|
...
|
@@ -75,8 +75,8 @@ |
|
|
},
|
|
|
getList() {
|
|
|
getFlightListForParam(this.listQuery).then(res => {
|
|
|
this.flightData = res.data.dataList
|
|
|
this.total = res.data.count
|
|
|
this.flightData = res.data.data.list
|
|
|
this.total = res.data.data.total
|
|
|
})
|
|
|
},
|
|
|
handleSearch() {
|
...
|
...
|
@@ -84,26 +84,26 @@ |
|
|
},
|
|
|
handleLoading(row) {
|
|
|
row.messageType = 'MT4201'
|
|
|
row.flightdate = row.flightDate
|
|
|
row.flightno = row.flightNo
|
|
|
row.flightdate = row.flightdate
|
|
|
row.flightno = row.flightno
|
|
|
this.$router.push({name: '出港航班信息', params: {scopeRow: row}})
|
|
|
},
|
|
|
handleTidy(row) {
|
|
|
row.messageType = 'MT5202'
|
|
|
row.flightdate = row.flightDate
|
|
|
row.flightno = row.flightNo
|
|
|
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
|
|
|
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
|
|
|
row.flightdate = row.flightdate
|
|
|
row.flightno = row.flightno
|
|
|
this.$router.push({name: '出港航班信息', params: {scopeRow: row}})
|
|
|
}
|
|
|
},
|
...
|
...
|
|