Commit 3a123140 authored by zhengke's avatar zhengke

修改

parent 557c6fe6
...@@ -444,11 +444,17 @@ ...@@ -444,11 +444,17 @@
</td> </td>
<td> <td>
<div>{{fItem.FlightDate}} {{fItem.Departure_time}}</div> <div>{{fItem.FlightDate}} {{fItem.Departure_time}}</div>
<div style="margin-top:5px;">({{fItem.DIATA}}){{fItem.dName}}</div> <div style="margin-top:5px;">
<span v-if="fItem.DIATA">({{fItem.DIATA}})</span>
{{fItem.dName}}
</div>
</td> </td>
<td> <td>
<div>{{fItem.FlightArrivalTime}} {{fItem.Arrival_time}}</div> <div>{{fItem.FlightArrivalTime}} {{fItem.Arrival_time}}</div>
<div style="margin-top:5px;">({{fItem.AIATA}}){{fItem.aName}}</div> <div style="margin-top:5px;">
<span v-if="fItem.AIATA">({{fItem.AIATA}})</span>
{{fItem.aName}}
</div>
</td> </td>
<td> <td>
<template v-if="fItem.StopoverIATA">({{fItem.StopoverIATA}})</template>{{fItem.StopoverName}} <template v-if="fItem.StopoverIATA">({{fItem.StopoverIATA}})</template>{{fItem.StopoverName}}
...@@ -461,9 +467,15 @@ ...@@ -461,9 +467,15 @@
class="TCL-flighInfoList"> class="TCL-flighInfoList">
<span class="travelnowrap"> <span class="travelnowrap">
<span class="TCL-FlightNumber">{{subItem.Flight_number}}</span> <span class="TCL-FlightNumber">{{subItem.Flight_number}}</span>
({{subItem.DIATA}}){{subItem.DepartureName}} <span v-if="subItem.DIATA">({{subItem.DIATA}})</span>{{subItem.DepartureName}}
{{subItem.StopoverName==''?'':'-('+subItem.StopoverIATA+')'+subItem.StopoverName}} {{subItem.StopoverName==''?'':'-('+subItem.StopoverIATA+')'+subItem.StopoverName}}
{{subItem.ArrivalCityName==''?'':'-('+subItem.AIATA+')'+subItem.ArrivalCityName}} <template v-if="subItem.ArrivalCityName">
<span v-if="subItem.AIATA">
({{subItem.AIATA}})
</span>
{{subItem.ArrivalCityName}}
</template>
<!-- {{subItem.ArrivalCityName==''?'':'-('+subItem.AIATA+')'+subItem.ArrivalCityName}} -->
<span v-if="subItem.FlightState==1" class="TCL-greenType">【OK】</span> <span v-if="subItem.FlightState==1" class="TCL-greenType">【OK】</span>
<span v-else class="TCL-redType">【{{$t('visa.v_zanding')}}】</span> <span v-else class="TCL-redType">【{{$t('visa.v_zanding')}}】</span>
</span> </span>
......
...@@ -75,13 +75,13 @@ ...@@ -75,13 +75,13 @@
<td>{{priceFlight.DepartureAirPortName}}</td> <td>{{priceFlight.DepartureAirPortName}}</td>
<td> <td>
<el-input v-if="priceFlight.IsShowTime||priceFlight.IsShow" :placeholder="$t('system.ph_flightTime')" <el-input v-if="priceFlight.IsShowTime||priceFlight.IsShow" :placeholder="$t('system.ph_flightTime')"
class="w120" v-model="priceFlight.DepartureTime"> class="w80" v-model="priceFlight.DepartureTime">
</el-input> </el-input>
<span v-else>{{priceFlight.DepartureTime}}</span> <span v-else>{{priceFlight.DepartureTime}}</span>
</td> </td>
<td>{{priceFlight.ArrivalAirPortName}}</td> <td>{{priceFlight.ArrivalAirPortName}}</td>
<td> <td>
<el-input v-if="priceFlight.IsShowTime||priceFlight.IsShow" placeholder="到达时间" class="w120" <el-input v-if="priceFlight.IsShowTime||priceFlight.IsShow" placeholder="到达时间" class="w80"
v-model="priceFlight.ArrivalTime"> v-model="priceFlight.ArrivalTime">
</el-input> </el-input>
<span v-else> {{priceFlight.ArrivalTime}}</span> <span v-else> {{priceFlight.ArrivalTime}}</span>
......
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