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-14 17:40:23 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c7cc2b4c1a3a18a9b91aa96c8988095d88ce3e5f
c7cc2b4c
1 parent
8d50698a
参数修正
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
c7cc2b4
...
...
@@ -976,13 +976,15 @@ export default {
let routesStatus = 1
this.routeList.forEach(route => {
response.data.list.forEach(item => {
let obj = JSON.parse(JSON.stringify(item))
if (route.route === item.flightRoute) {
console.log(obj)
routesStatus = 2
item
.id = undefined
item
.status = undefined
item.flightRoute = this.infoForm
.route
item
.routePriority = route.routePriority
this.infoForm.list.push(this.dataHandle(
item
))
obj
.id = undefined
obj
.status = undefined
obj.flightRoute = route
.route
obj
.routePriority = route.routePriority
this.infoForm.list.push(this.dataHandle(
obj
))
}
})
if (routesStatus == 1) {
...
...
Please
register
or
login
to post a comment