jinhui.wang

状态增加

...@@ -74,7 +74,7 @@ export const constantRoutes = [ ...@@ -74,7 +74,7 @@ export const constantRoutes = [
74 redirect: 'noredirect', 74 redirect: 'noredirect',
75 children: [ 75 children: [
76 { 76 {
77 - path: '/info/:handle/:id|:routeStatus|:fltNo|:route|:fltDate', 77 + path: '/info/:handle/:id|:routeStatus|:fltNo|:route|:fltDate|:status',
78 component: (resolve) => require(['@/views/allocationConfig/flightAllocConfig/info'], resolve), 78 component: (resolve) => require(['@/views/allocationConfig/flightAllocConfig/info'], resolve),
79 name: 'FlightAllocConfigInfo', 79 name: 'FlightAllocConfigInfo',
80 meta: { title: '航班配舱', icon: 'user' } 80 meta: { title: '航班配舱', icon: 'user' }
......
...@@ -277,7 +277,7 @@ export default { ...@@ -277,7 +277,7 @@ export default {
277 fltDate: fltDate != null ? fltDate : ' ', 277 fltDate: fltDate != null ? fltDate : ' ',
278 route: route, 278 route: route,
279 routeStatus: 'FlightRandConfig', 279 routeStatus: 'FlightRandConfig',
280 - status: '1' 280 + status: ' '
281 } 281 }
282 this.$router.push({ 282 this.$router.push({
283 name: "FlightAllocConfigInfo", 283 name: "FlightAllocConfigInfo",
......
...@@ -791,7 +791,7 @@ export default { ...@@ -791,7 +791,7 @@ export default {
791 fltDate: val.fltDate ? val.fltDate : null, 791 fltDate: val.fltDate ? val.fltDate : null,
792 route: val.flightKindName != 'Purple Tail' ? val.route : ' ', 792 route: val.flightKindName != 'Purple Tail' ? val.route : ' ',
793 routeStatus: 'flightInformationMaintenance' + val.flightKindName, 793 routeStatus: 'flightInformationMaintenance' + val.flightKindName,
794 - status: '1' 794 + status: ' '
795 } 795 }
796 this.$router.push({ 796 this.$router.push({
797 name: 'FlightAllocConfigInfo', 797 name: 'FlightAllocConfigInfo',
......
...@@ -64,14 +64,14 @@ ...@@ -64,14 +64,14 @@
64 <template v-slot:awbNbr="scope"> 64 <template v-slot:awbNbr="scope">
65 <el-link type="primary" @click="gotoWeatherTable(scope.row)"> 65 <el-link type="primary" @click="gotoWeatherTable(scope.row)">
66 {{ 66 {{
67 - scope.row.awbNbr 67 + scope.row.awbNbr
68 }}<i class="el-icon-link"></i> </el-link> 68 }}<i class="el-icon-link"></i> </el-link>
69 </template> 69 </template>
70 <template v-slot:flightFltNo="scope"> 70 <template v-slot:flightFltNo="scope">
71 <el-link v-if="scope.row.allocDimId" type="primary" 71 <el-link v-if="scope.row.allocDimId" type="primary"
72 - @click="$router.push({ name: 'FlightAllocConfigInfo', params: { id: scope.row.allocDimId, handle: 'detail', fltNo: scope.row.flightFltNo, fltDate: scope.row.flightFltDate ? scope.row.flightFltDate : ' ', routeStatus: 'dmLog', route: scope.row.currentFlightRoute? scope.row.currentFlightRoute:' ' } })"> 72 + @click="$router.push({ name: 'FlightAllocConfigInfo', params: { id: scope.row.allocDimId, handle: 'detail', fltNo: scope.row.flightFltNo, fltDate: scope.row.flightFltDate ? scope.row.flightFltDate : ' ', routeStatus: 'dmLog', route: scope.row.currentFlightRoute ? scope.row.currentFlightRoute : ' ', status: ' ' } })">
73 {{ 73 {{
74 - scope.row.flightFltNo 74 + scope.row.flightFltNo
75 }}<i class="el-icon-link"></i> </el-link> 75 }}<i class="el-icon-link"></i> </el-link>
76 <span v-else>{{ scope.row.flightFltNo }}</span> 76 <span v-else>{{ scope.row.flightFltNo }}</span>
77 </template> 77 </template>
......