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
2022-10-10 13:30:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1369953c6031dcb11012d157f71707dd5596f22a
1369953c
1 parent
cdb704d2
维度跳转修正
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
src/views/allocationConfig/flightAllocConfig/index.vue
src/views/allocationConfig/flightAllocConfig/index.vue
View file @
1369953
...
...
@@ -128,9 +128,17 @@ export default {
},
//跳转到查看,修改页面
handleClick(fltNo, handle, fltDate, status) {
let obj = {
handle: handle,
fltNo: fltNo,
fltDate: fltDate != null ? fltDate : ' ',
route: null,
routeStatus: 'FlightAllocConfig',
status: status
}
this.$router.push({
name: "FlightAllocConfigInfo",
params:
{ handle: handle, fltNo: fltNo, fltDate: fltDate ? fltDate : null, status: status }
,
params:
obj
,
});
},
//航班优先级修改
...
...
Please
register
or
login
to post a comment