Showing
1 changed file
with
3 additions
and
1 deletions
| ... | @@ -575,7 +575,9 @@ export default { | ... | @@ -575,7 +575,9 @@ export default { |
| 575 | this.getRouteDimension({ fltNo: this.infoForm.fltNo, fltDate: this.infoForm.fltDate, route: route ? route : '', status: this.$route.params.status }) | 575 | this.getRouteDimension({ fltNo: this.infoForm.fltNo, fltDate: this.infoForm.fltDate, route: route ? route : '', status: this.$route.params.status }) |
| 576 | } | 576 | } |
| 577 | if (this.$route.params.handle == 'add') { | 577 | if (this.$route.params.handle == 'add') { |
| 578 | - this.getRoutes(this.infoForm.fltNo) | 578 | + if (this.infoForm.fltNo && this.infoForm.fltNo != null && this.infoForm.fltNo != '') { |
| 579 | + this.getRoutes(this.infoForm.fltNo) | ||
| 580 | + } | ||
| 579 | } | 581 | } |
| 580 | }, | 582 | }, |
| 581 | deep: true | 583 | deep: true | ... | ... |
-
Please register or login to post a comment