|
@@ -167,30 +167,20 @@ export default {
|
|
|
this.setClub(fttpId)
|
|
|
if (flightno) {
|
|
|
const datas = this.tableList.filter(item => item.flight_all_no == flightno)
|
|
|
- this.tableListcop = _.chunk(datas, 10)
|
|
|
- this.tableNewList = this.tableListcop[0]
|
|
|
- this.total = datas.length
|
|
|
+ this.setTable(datas)
|
|
|
} else {
|
|
|
if (fttp && !flighttype) {
|
|
|
const datas = this.tableList.filter(item => item.index_class == fttp)
|
|
|
- this.tableListcop = _.chunk(datas, 10)
|
|
|
- this.tableNewList = this.tableListcop[0]
|
|
|
- this.total = datas.length
|
|
|
+ this.setTable(datas)
|
|
|
} else if (!fttp && flighttype) {
|
|
|
const datas = this.tableList.filter(item => item.second_department == flighttype)
|
|
|
- this.tableListcop = _.chunk(datas, 10)
|
|
|
- this.tableNewList = this.tableListcop[0]
|
|
|
- this.total = datas.length
|
|
|
+ this.setTable(datas)
|
|
|
} else if (fttp && flighttype) {
|
|
|
const datas = this.tableList.filter(item => item.second_department == flighttype && item.index_class == fttp)
|
|
|
- this.tableListcop = _.chunk(datas, 10)
|
|
|
- this.tableNewList = this.tableListcop[0]
|
|
|
- this.total = datas.length
|
|
|
+ this.setTable(datas)
|
|
|
} else {
|
|
|
const datas = this.tableList
|
|
|
- this.tableListcop = _.chunk(datas, 10)
|
|
|
- this.tableNewList = this.tableListcop[0]
|
|
|
- this.total = datas.length
|
|
|
+ this.setTable(datas)
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -234,6 +224,11 @@ export default {
|
|
|
data.dateTime;
|
|
|
this.listHeader = ["序号", "时间", "航班(班)", "环比(%)"];
|
|
|
},
|
|
|
+ setTable (datas) {
|
|
|
+ this.tableListcop = _.chunk(datas, 10)
|
|
|
+ this.tableNewList = this.tableListcop[0]
|
|
|
+ this.total = datas.length
|
|
|
+ },
|
|
|
setClub (id) {
|
|
|
switch (id) {
|
|
|
case 52233:
|