Commit f462570f authored by 黄奎's avatar 黄奎

航班状态修改

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