jinhui.wang

跳转逻辑增加,字典增加

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