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-02-24 11:03:50 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c177dd210b1ce1966c30bba643583fc3d25651c8
c177dd21
1 parent
69dc0f77
参数修正
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
src/views/basicInformation/queryCargo/index.vue
src/views/basicInformation/queryCargo/index.vue
View file @
c177dd2
...
...
@@ -692,7 +692,13 @@ export default {
},
//配载航班号获取航线
planeNoChange(val) {
getFlightsRoutes(val.split(';')).then(res => {
let arr = []
if (typeof val != 'object') {
arr = val.split(';')
} else {
arr = val
}
getFlightsRoutes(arr).then(res => {
if (res.code === 200) {
this.routeList = res.data
} else {
...
...
Please
register
or
login
to post a comment