...
|
...
|
@@ -369,7 +369,15 @@ |
|
|
},
|
|
|
//点击进入原始页面
|
|
|
handleClick(row){
|
|
|
this.$router.push({path:'/origmaster',query:{flightno:JSON.stringify(row.carrier+row.flightno),destinationstation:JSON.stringify(row.destinationstation),awba:JSON.stringify(row.awba),flightdate:JSON.stringify(row.flightdate),originstation:JSON.stringify(row.originstation)}});
|
|
|
this.$router.push({path:'/origmaster',
|
|
|
query:{
|
|
|
flightno:row.carrier+row.flightno,
|
|
|
destinationstation:row.destinationstation,
|
|
|
awba:row.awba,
|
|
|
flightdate:row.flightdate,
|
|
|
originstation:row.originstation
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
//点击进入理货页面
|
|
|
handleTally(row){
|
...
|
...
|
|