Showing
4 changed files
with
6 additions
and
4 deletions
| ... | @@ -563,7 +563,7 @@ export default { | ... | @@ -563,7 +563,7 @@ export default { |
| 563 | }, | 563 | }, |
| 564 | activated() { | 564 | activated() { |
| 565 | this.routeSatus = this.$route.params.routeStatus | 565 | this.routeSatus = this.$route.params.routeStatus |
| 566 | - if (!this.$route.params.status) { | 566 | + if (!this.$route.params.createStatus) { |
| 567 | if (this.$route.params.handle == 'add') { | 567 | if (this.$route.params.handle == 'add') { |
| 568 | if (this.infoForm.fltNo && this.infoForm.fltNo != null && this.infoForm.fltNo != '') { | 568 | if (this.infoForm.fltNo && this.infoForm.fltNo != null && this.infoForm.fltNo != '') { |
| 569 | this.getRoutes(this.infoForm.fltNo) | 569 | this.getRoutes(this.infoForm.fltNo) | ... | ... |
| ... | @@ -277,7 +277,8 @@ export default { | ... | @@ -277,7 +277,8 @@ 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: ' ' | 280 | + status: ' ', |
| 281 | + createStatus: 1, | ||
| 281 | } | 282 | } |
| 282 | this.$router.push({ | 283 | this.$router.push({ |
| 283 | name: "FlightAllocConfigInfo", | 284 | name: "FlightAllocConfigInfo", | ... | ... |
| ... | @@ -791,7 +791,8 @@ export default { | ... | @@ -791,7 +791,8 @@ 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: ' ' | 794 | + status: ' ', |
| 795 | + createStatus: 1, | ||
| 795 | } | 796 | } |
| 796 | this.$router.push({ | 797 | this.$router.push({ |
| 797 | name: 'FlightAllocConfigInfo', | 798 | name: 'FlightAllocConfigInfo', | ... | ... |
| ... | @@ -69,7 +69,7 @@ | ... | @@ -69,7 +69,7 @@ |
| 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 : ' ', status: ' ' } })"> | 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: ' ', createStatus: 1, } })"> |
| 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> | ... | ... |
-
Please register or login to post a comment