正在显示
1 个修改的文件
包含
24 行增加
和
2 行删除
@@ -46,6 +46,9 @@ import airlift from './views/nav4/airlift.vue' | @@ -46,6 +46,9 @@ import airlift from './views/nav4/airlift.vue' | ||
46 | import inquiry from './views/nav4/inquiry.vue' | 46 | import inquiry from './views/nav4/inquiry.vue' |
47 | import Page6 from './views/nav3/Page6.vue' | 47 | import Page6 from './views/nav3/Page6.vue' |
48 | import Page7 from './views/nav3/Page7.vue' | 48 | import Page7 from './views/nav3/Page7.vue' |
49 | +import Dispatch from './views/nav3/Dispatch.vue' | ||
50 | +import DriverInfo from './views/nav3/DriverInfo.vue' | ||
51 | +import VehicleInfo from './views/nav3/VehicleInfo.vue' | ||
49 | import importFFMMsg from './views/airRadioMsg/importFFMMsg.vue' | 52 | import importFFMMsg from './views/airRadioMsg/importFFMMsg.vue' |
50 | import importFHLMsg from './views/airRadioMsg/importFHLMsg.vue' | 53 | import importFHLMsg from './views/airRadioMsg/importFHLMsg.vue' |
51 | import importFWBMsg from './views/airRadioMsg/importFWBMsg.vue' | 54 | import importFWBMsg from './views/airRadioMsg/importFWBMsg.vue' |
@@ -81,6 +84,8 @@ import queryRouteaircraft from './views/airtransport/queryRouteaircraft.vue' | @@ -81,6 +84,8 @@ import queryRouteaircraft from './views/airtransport/queryRouteaircraft.vue' | ||
81 | import arrival from './views/airtransport/arrival.vue' | 84 | import arrival from './views/airtransport/arrival.vue' |
82 | import confirmatory from './views/airtransport/confirmatory.vue' | 85 | import confirmatory from './views/airtransport/confirmatory.vue' |
83 | import queryArrival from './views/airtransport/queryArrival.vue' | 86 | import queryArrival from './views/airtransport/queryArrival.vue' |
87 | +import conForConfigure from './views/airtransport/conForConfigure.vue' | ||
88 | +import queryForConfigure from './views/airtransport/queryForConfigure.vue' | ||
84 | import queryConfirmatory from './views/airtransport/queryConfirmatory.vue' | 89 | import queryConfirmatory from './views/airtransport/queryConfirmatory.vue' |
85 | import configure from './views/airtransport/configure.vue' | 90 | import configure from './views/airtransport/configure.vue' |
86 | import queryConfigure from './views/airtransport/queryConfigure.vue' | 91 | import queryConfigure from './views/airtransport/queryConfigure.vue' |
@@ -151,7 +156,7 @@ let routes = [ | @@ -151,7 +156,7 @@ let routes = [ | ||
151 | { path: '/test', component: Main }, | 156 | { path: '/test', component: Main }, |
152 | { | 157 | { |
153 | path: '/bill', | 158 | path: '/bill', |
154 | - component: Home, | 159 | + component: HomeNew, |
155 | name: '货运单', | 160 | name: '货运单', |
156 | iconCls: 'el-icon-collection', | 161 | iconCls: 'el-icon-collection', |
157 | children: [ | 162 | children: [ |
@@ -169,7 +174,17 @@ let routes = [ | @@ -169,7 +174,17 @@ let routes = [ | ||
169 | { path: '/Page7', component: Page7, name: '申请添加' }, | 174 | { path: '/Page7', component: Page7, name: '申请添加' }, |
170 | ] | 175 | ] |
171 | }, | 176 | }, |
172 | - | 177 | + { |
178 | + path: '/', | ||
179 | + component: HomeNew, | ||
180 | + name: '车辆调度管理', | ||
181 | + iconCls: 'el-icon-delete-location', | ||
182 | + children: [ | ||
183 | + { path: '/Dispatch', component: Dispatch, name: '车辆调度' }, | ||
184 | + { path: '/DriverInfo', component: DriverInfo, name: '驾驶员信息' }, | ||
185 | + { path: '/VehicleInfo', component: VehicleInfo, name: '车辆信息' }, | ||
186 | + ] | ||
187 | + }, | ||
173 | 188 | ||
174 | { | 189 | { |
175 | path: '/domdep', | 190 | path: '/domdep', |
@@ -352,6 +367,8 @@ let routes = [ | @@ -352,6 +367,8 @@ let routes = [ | ||
352 | {path:'/flightplan',component:Flightplan,name:'当日飞行计划'}, | 367 | {path:'/flightplan',component:Flightplan,name:'当日飞行计划'}, |
353 | {path:'/aircraft',component:Aircraft,name:'通用航空器申报'}, | 368 | {path:'/aircraft',component:Aircraft,name:'通用航空器申报'}, |
354 | {path:'/routeaircraft',component:Routeaircraft,name:'航线航空器申报'}, | 369 | {path:'/routeaircraft',component:Routeaircraft,name:'航线航空器申报'}, |
370 | + {path:'/queryForConfigure',component:queryForConfigure,name:'预报申报配置'}, | ||
371 | + {path:'/conryForConfigure',component:conForConfigure,name:'确报申报配置'}, | ||
355 | ] | 372 | ] |
356 | }, | 373 | }, |
357 | { | 374 | { |
@@ -380,6 +397,9 @@ let routes = [ | @@ -380,6 +397,9 @@ let routes = [ | ||
380 | {path:'/queryConfirmatory',component:queryConfirmatory,name:'进港确报查询'}, | 397 | {path:'/queryConfirmatory',component:queryConfirmatory,name:'进港确报查询'}, |
381 | {path:'/configure',component:configure,name:'进港航班配置'}, | 398 | {path:'/configure',component:configure,name:'进港航班配置'}, |
382 | {path:'/queryConfigure',component:queryConfigure,name:'航班配置查询'}, | 399 | {path:'/queryConfigure',component:queryConfigure,name:'航班配置查询'}, |
400 | + | ||
401 | + | ||
402 | + | ||
383 | ] | 403 | ] |
384 | }, | 404 | }, |
385 | { | 405 | { |
@@ -415,6 +435,8 @@ let routes = [ | @@ -415,6 +435,8 @@ let routes = [ | ||
415 | {path:'/queryDeclare',component:queryDeclare,name:'出港确报查询'}, | 435 | {path:'/queryDeclare',component:queryDeclare,name:'出港确报查询'}, |
416 | {path:'/outConfigure',component:outConfigure,name:'出港航班配置'}, | 436 | {path:'/outConfigure',component:outConfigure,name:'出港航班配置'}, |
417 | {path:'/queryFlightConfigure',component:queryFlightConfigure,name:'航班配置查询'}, | 437 | {path:'/queryFlightConfigure',component:queryFlightConfigure,name:'航班配置查询'}, |
438 | + | ||
439 | + | ||
418 | ] | 440 | ] |
419 | }, | 441 | }, |
420 | { | 442 | { |
-
请 注册 或 登录 后发表评论