Elements-SY

modify

......@@ -1054,11 +1054,6 @@ export default {
findDestinationFltRuleByFlightNo(query).then(result => {
const { code, data } = result;
if (code == 200) {
let newRoute = JSON.parse(JSON.stringify(this.routeList.concat(data.routeList)))
const resRoute = newRoute.filter((item, index, self) => {
return self.findIndex(t => JSON.stringify(t) === JSON.stringify(item)) === index;
});
this.routeList = Array.from(new Set(resRoute));
if (data.routeList.length) {
this.routeList.forEach(route => {
let routesStatus = 1
......