Commit 44e0f23f authored by liudong1993's avatar liudong1993

销售产品中心航班状态

parent 2cc00915
...@@ -642,6 +642,7 @@ ...@@ -642,6 +642,7 @@
<th width="150">起飞时间</th> <th width="150">起飞时间</th>
<th width="80">到达时间</th> <th width="80">到达时间</th>
<th width="100">经停城市</th> <th width="100">经停城市</th>
<th width="60">状态</th>
</tr> </tr>
<tr v-for="(ds,din) in tripDetails" :key="din" style="text-align:center;"> <tr v-for="(ds,din) in tripDetails" :key="din" style="text-align:center;">
<td class="_d_name _color_666"> <td class="_d_name _color_666">
...@@ -662,6 +663,10 @@ ...@@ -662,6 +663,10 @@
<div style="margin-top:5px;">{{ds.aName}}</div> <div style="margin-top:5px;">{{ds.aName}}</div>
</td> </td>
<td>{{ds.StopoverName}}</td> <td>{{ds.StopoverName}}</td>
<td>
<span v-if="ds.FlightState==1" style="color: rgb(71, 191, 140)!important;">正常</span>
<span v-else style="color: red !important;">暂定</span>
</td>
</tr> </tr>
</table> </table>
<span slot="reference" @click="getDetails(index)">往返</span> <span slot="reference" @click="getDetails(index)">往返</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