jinhui.wang

维度跳转状态修正

......@@ -128,9 +128,17 @@ export default {
},
//跳转到查看,修改页面
handleClick(fltNo, handle, fltDate, status) {
let obj = {
handle: handle,
fltNo: fltNo,
fltDate: fltDate != null ? fltDate : ' ',
route: '',
routeStatus: 'FlightAllocConfig',
status: status
}
this.$router.push({
name: "FlightAllocConfigInfo",
params: { handle: handle, fltNo: fltNo, fltDate: fltDate ? fltDate : null, status: status },
params: obj,
});
},
//航班优先级修改
......