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-09-28 10:27:08 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2b446f4c0f01adfe8b590c00b774b705fb370575
2b446f4c
1 parent
b8338dc6
modify
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
2b446f4
...
...
@@ -872,9 +872,13 @@ export default {
this.routeLoading = false
if (res.code === 200) {
if(res.data.list.length){
res.data.list.map((item) => {
if(item.isEtesRoute == "Y"){
item.route = `${item.route}【ET86】`
}
}); // 过滤ET86航线
console.log(res.data.list)
this.routeList = res.data.list
let isEtesRoute = res.data.list.filter((item) => item.isEtesRoute == "N"); // 过滤ET86航线
// this.routeList = isEtesRoute
}else{
this.routeList = []
}
...
...
Please
register
or
login
to post a comment