Commit f462570f authored by 黄奎's avatar 黄奎

航班状态修改

parent 55f322f1
......@@ -664,7 +664,7 @@
</td>
<td>{{ds.StopoverName}}</td>
<td>
<span v-if="item.OutNotice==1" style="color: rgb(71, 191, 140)!important;">确定</span>
<span v-if="ds.FlightState==1" style="color: rgb(71, 191, 140)!important;">OK</span>
<span v-else style="color: red !important;">暂定</span>
</td>
</tr>
......
......@@ -396,7 +396,7 @@
({{subItem.DIATA}}){{subItem.DepartureName}}
{{subItem.StopoverName==''?'':'-('+subItem.StopoverIATA+')'+subItem.StopoverName}}
{{subItem.ArrivalCityName==''?'':'-('+subItem.AIATA+')'+subItem.ArrivalCityName}}
<span v-if="item.OutNotice==1" class="TCL-greenType">【确定</span>
<span v-if="subItem.FlightState==1" class="TCL-greenType">【OK</span>
<span v-else class="TCL-redType">【暂定】</span>
</span>
</div>
......
......@@ -324,7 +324,7 @@
{{subItem.DepartureName}}
{{subItem.StopoverName==""?"":"-"+subItem.StopoverName}}
{{subItem.ArrivalCityName==""?"":"-"+subItem.ArrivalCityName}}
<span v-if="subItem.OutNotice==1" class="TCL-greenType">【确定</span>
<span v-if="subItem.FlightState==1" class="TCL-greenType">【OK</span>
<span v-else class="TCL-redType">【暂定】</span>
</span>
</div>
......
......@@ -161,7 +161,7 @@
<td>{{flight.arrivalAirPortName}}<span class="citycode"></span></td>
<td width="18" class="gap">&nbsp;</td>
<td width="140">{{flight.alName}}</td>
<td width="110">{{flight.flightNumber}}({{(priceList.length>0&&priceList[0].outNotice==1)?"OK":"暂定"}})</td>
<td width="110">{{flight.flightNumber}}({{(flight.flightState==1)?"OK":"暂定"}})</td>
</tr>
</tbody>
<tbody v-else-if="priceList.length>0&&priceList[0].priceFlight&&priceList[0].priceFlight.length>0">
......@@ -173,7 +173,7 @@
<td>{{flight.arrivalAirPortName}}<span class="citycode"></span></td>
<td width="18" class="gap">&nbsp;</td>
<td width="140">{{flight.alName}}</td>
<td width="110">{{flight.flightNumber}}({{(priceList.length>0&&priceList[0].outNotice==1)?"OK":"暂定"}})</td>
<td width="110">{{flight.flightNumber}}({{(flight.flightState==1)?"OK":"暂定"}})</td>
</tr>
</tbody>
<tbody v-else>
......
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