Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Elements-SY
2023-10-16 17:54:42 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a4ee2e959c383690125fccbddb703f7db30cc61c
a4ee2e95
1 parent
c5f65b8c
modify
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
src/views/allocationConfig/flightAllocConfig/flightRouteInfo/index.vue
src/views/allocationConfig/flightAllocConfig/flightRouteInfo/index.vue
View file @
a4ee2e9
...
...
@@ -125,14 +125,18 @@ export default {
(item) => item.isEtesRoute == "N"
); // 过滤ET86航线
const routes = [];
isEtesRoute.map((item) => {
routes.push({ config: false, route: item.route });
});
if (isEtesRoute.length) {
isEtesRoute.map((item) => {
routes.push({ config: false, route: item.route });
});
} else {
this.msgWarning("暂无航线");
}
this.routeList = isEtesRoute;
this.routesInfo = routes;
} else {
this.routeList = [];
this.msg
Error
("暂无航线");
this.msg
Warning
("暂无航线");
}
}
})
...
...
Please
register
or
login
to post a comment