...
|
...
|
@@ -208,7 +208,7 @@ |
|
|
if(response.code=='200'){
|
|
|
this.centerDialogVisible=true;
|
|
|
this.msg=response.msg;
|
|
|
this.$router.push({path:'/queryFlightplan',query:{flightNo:JSON.stringify(this.flight.flightNo)}});
|
|
|
this.$router.push({path:'/queryFlightplan',query:{flightNo:this.flight.flightNo,flightDate:this.flight.flightDate,aircraftNo:this.flight.aircraftNo}});
|
|
|
}else{
|
|
|
this.msg=response.msg;
|
|
|
}
|
...
|
...
|
@@ -223,8 +223,8 @@ |
|
|
defaultData(){
|
|
|
if(this.$route.query.uuid!=null){
|
|
|
let ob=Object.assign(this.flight, this.$route.query);
|
|
|
this.flight.currentLandingTime=fecha.parse(ob.currentLandingTime,'yyyyMMddHHmm');
|
|
|
this.flight.currentTakeoffTime=fecha.parse(ob.currentTakeoffTime,'yyyyMMddHHmm');
|
|
|
/*this.flight.currentLandingTime=fecha.parse(ob.currentLandingTime,'yyyyMMddHHmm');
|
|
|
this.flight.currentTakeoffTime=fecha.parse(ob.currentTakeoffTime,'yyyyMMddHHmm');*/
|
|
|
}
|
|
|
},
|
|
|
},
|
...
|
...
|
|