...
|
...
|
@@ -161,10 +161,10 @@ |
|
|
getDefaultData(){
|
|
|
if(this.$route.query!=null){
|
|
|
console.log(this.$route.query)
|
|
|
this.ruleForm.flightno=JSON.parse(this.$route.query.flightno);
|
|
|
this.ruleForm.flightdate=JSON.parse(this.$route.query.flightdate);
|
|
|
this.ruleForm.originstation=JSON.parse(this.$route.query.originstation);
|
|
|
this.ruleForm.destinationstation=JSON.parse(this.$route.query.destinationstation);
|
|
|
this.ruleForm.flightno=this.$route.query.flightno;
|
|
|
this.ruleForm.flightdate=this.$route.query.flightdate;
|
|
|
this.ruleForm.originstation=this.$route.query.originstation;
|
|
|
this.ruleForm.destinationstation=this.$route.query.destinationstation;
|
|
|
}
|
|
|
}
|
|
|
},
|
...
|
...
|
|