Commit 5a802e93 authored by zhengke's avatar zhengke

修改

parent 3a123140
...@@ -25,6 +25,9 @@ ...@@ -25,6 +25,9 @@
.travelControlDropDown .el-dropdown-menu__item{ .travelControlDropDown .el-dropdown-menu__item{
width:156px; width:156px;
} }
.guoneiLine tbody td{
font-size:17px;
}
</style> </style>
<template> <template>
...@@ -219,14 +222,20 @@ ...@@ -219,14 +222,20 @@
<div class="english-title">Flight situation</div> <div class="english-title">Flight situation</div>
</div> </div>
<div v-if='vshowB' class="hangban-info"> <div v-if='vshowB' class="hangban-info">
<table border="0" align="center" cellpadding="0" cellspacing="0" class="flight_th"> <table border="0" align="center" cellpadding="0" cellspacing="0" class="flight_th" :class="{'guoneiLine':lineId==90}">
<tbody> <tbody>
<tr> <tr>
<td width="140">出发时间<span>(当地)</span></td> <td width="140">出发时间<span>(当地)</span></td>
<td width="160">抵达时间<span>(当地)</span></td> <td width="160">抵达时间<span>(当地)</span></td>
<td width="160">起飞机场</td> <td width="160">
<template v-if="lineId==90">起飞机场/出发城市</template>
<template v-else>起飞机场</template>
</td>
<td width="18" class="gap">&nbsp;</td> <td width="18" class="gap">&nbsp;</td>
<td width="160">抵达机场</td> <td width="160">
<template v-if="lineId==90">抵达机场/到达城市</template>
<template v-else>抵达机场</template>
</td>
<td width="18" class="gap">&nbsp;</td> <td width="18" class="gap">&nbsp;</td>
<td width="140">航空公司</td> <td width="140">航空公司</td>
<td width="90">航班编号</td> <td width="90">航班编号</td>
...@@ -745,7 +754,8 @@ ...@@ -745,7 +754,8 @@
orderTripdiff: {}, orderTripdiff: {},
title: '', title: '',
isDirect: 1, //是否是直采 0:否,1:是 isDirect: 1, //是否是直采 0:否,1:是
isClick: this.$route.query.isClick === undefined ? 0 : 1//不算统计 isClick: this.$route.query.isClick === undefined ? 0 : 1, //不算统计
lineId:0
} }
}, },
mounted() { mounted() {
...@@ -1316,6 +1326,7 @@ ...@@ -1316,6 +1326,7 @@
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
let data = (res.data.data); let data = (res.data.data);
this.orderTripdiff = data.orderTripdiff; this.orderTripdiff = data.orderTripdiff;
this.lineId = data.lineId;
this.orderMsg = data.orderMsg; this.orderMsg = data.orderMsg;
if (this.orderTripdiff && this.orderTripdiff.flightInfoJson) { if (this.orderTripdiff && this.orderTripdiff.flightInfoJson) {
this.orderTripdiff.travelOrderFlightList = JSON.parse(this.orderTripdiff.flightInfoJson); this.orderTripdiff.travelOrderFlightList = JSON.parse(this.orderTripdiff.flightInfoJson);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment