jinhui.wang

跳转逻辑增加,字典增加

......@@ -19,7 +19,8 @@ let ductLabels = {
"7": "预审导出",
"8": "预审导入",
"9": "航班不推送修改为待推送",
"10": "回推ACCS"
"10": "回推ACCS",
"11": "航班迁转"
}
},
"menu": {//菜单设置
......@@ -62,6 +63,11 @@ let ductLabels = {
"1": "是",
"2": "否",
},
"whiteListSwitch": {
"1": "开启",
"0": "关闭",
null: '关闭'
}
},
"flightRand": {//航班顺位设置
"status": {
......
......@@ -778,7 +778,7 @@ export default {
})
} else {
//航线为空,提示未找到维度数据
if (this.routeSatus == 'flightInformationMaintenancePurple Tail') {
if (this.routeSatus == 'flightInformationMaintenancePurple Tail' || this.routeSatus == 'FlightRandConfig') {
findDestinationFltRuleByFlightNo({
purposeOfFlightNo: this.infoForm.fltNo,
flightRoute: this.infoForm.route,
......
......@@ -67,7 +67,8 @@
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit"
@click="handleClick(scope.row.actualFlight, 'detail', scope.row.flightDate, ' ', ' ')">查看配置维度
@click="handleClick(scope.row.actualFlight, 'detail', scope.row.flightDate, ' ', ' ')">
查看配置维度
</el-button>
</template>
</el-table-column>
......@@ -268,7 +269,7 @@ export default {
},
methods: {
//跳转到查看,修改页面
handleClick(fltNo, handle, fltDate, route) {
handleClick(fltNo, handle, fltDate, route, status) {
this.openFlightDate = false;
let obj = {
id: ' ',
......@@ -277,7 +278,7 @@ export default {
fltDate: fltDate != null ? fltDate : ' ',
route: route,
routeStatus: 'FlightRandConfig',
status: ' ',
status: status,
createStatus: 1,
}
this.$router.push({
......