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
jinhui.wang
2023-09-13 16:07:09 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8e899bb5249dab589d1e7b3dc36f600ccf5352e6
8e899bb5
1 parent
46394042
增加处理规则
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
7 deletions
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
8e899bb
...
...
@@ -821,15 +821,25 @@ export default {
})
}
})
}
else {
} else {
this.routeList.forEach((route) => {
this.infoForm.list.push({
purposeOfFlightNo: this.infoForm.fltNo,
ruleDate: this.infoForm.fltDate,
flightRoute: route.route,
routePriority: route.routePriority,
let routeStatus = 1
infoRouteList.forEach((item, index) => {
if (item == route.route) {
routeStatus = 2
this.infoForm.list.push(
this.dataHandle(res.data.list[index])
)
}
})
if (routeStatus == 1) {
this.infoForm.list.push({
purposeOfFlightNo: this.infoForm.fltNo,
ruleDate: this.infoForm.fltDate,
flightRoute: route.route,
routePriority: route.routePriority,
})
}
})
}
}).catch(err => {
...
...
Please
register
or
login
to post a comment