Commit a347c842 authored by zhengke's avatar zhengke

修改样式

parent 48dff76a
...@@ -155,10 +155,10 @@ ...@@ -155,10 +155,10 @@
</el-pagination> </el-pagination>
<el-dialog custom-class='passgenrDialog' title="航班列表" :visible.sync="outerVisible" center> <el-dialog custom-class='passgenrDialog' title="航班列表" :visible.sync="outerVisible" center>
<div style="border-bottom:1px solid #d1d1d1;"> <!-- <div style="border-bottom:1px solid #d1d1d1;">
<table border=0 class="pg_table"> <table border=0 class="pg_table">
<tr> <tr>
<td width="50" style="vertical-align:top;position:relative;" class=""> <td width="60" style="vertical-align:top;position:relative;" class="">
<span class="Pgzhu">票务信息</span> <span class="Pgzhu">票务信息</span>
</td> </td>
...@@ -195,7 +195,7 @@ ...@@ -195,7 +195,7 @@
</tr> </tr>
<tr> <tr>
<td width="50" style="vertical-align:top;">联运信息</td> <td width="60" style="vertical-align:top;">联运信息</td>
<td> <td>
<div class="PgflightDiv" v-for="item in flightList" v-if="item.FlightSubType==3"> <div class="PgflightDiv" v-for="item in flightList" v-if="item.FlightSubType==3">
<p> <p>
...@@ -240,33 +240,33 @@ ...@@ -240,33 +240,33 @@
</td> </td>
</tr> </tr>
<tr v-for="subItem in item.List"> <tr v-for="subItem in item.List">
<td>{{subItem.CityName}}去程</td> <td width="60">{{subItem.CityName}}去程</td>
<td> <td>
<div class="PgflightDiv" v-for="childItem in subItem.List" v-if="childItem.FlightSubType==1"> <div class="PgflightDiv" v-for="childItem in subItem.List" v-if="childItem.FlightSubType==1">
<p> <p>
<span class="iconfont icon-hangban"></span> <span class="iconfont icon-hangban"></span>
<span>{{item.Flight_number}}</span> <span>{{item.Flight_number}}</span>
<span> <span>
<el-input class="w60" v-model="item.TicketDepartureTime" onkeyup="value=value.replace(/[^\d^\:]/g,'')"></el-input> - <el-input class="w60" v-model="childItem.Departure_time" onkeyup="value=value.replace(/[^\d^\:]/g,'')"></el-input> -
<el-input class="w60" v-model="item.TicketArrivalTime" onkeyup="value=value.replace(/[^\d^\:]/g,'')"></el-input> <el-input class="w60" v-model="childItem.Arrival_time" onkeyup="value=value.replace(/[^\d^\:]/g,'')"></el-input>
</span> </span>
</p> </p>
<el-tooltip class="item" effect="dark" :content="item.FlightDate" placement="top-start" <el-tooltip class="item" effect="dark" :content="childItem.FlightDate" placement="top-start"
popper-class="max-w250"> popper-class="max-w250">
<p class="_add_info"> <p class="_add_info">
<span>{{$t('Airticket.Air_StartTime')}}{{item.FlightDate}}</span> <span>{{$t('Airticket.Air_StartTime')}}{{childItem.FlightDate}}</span>
</p> </p>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" :content="item.dName" placement="top-start" <el-tooltip class="item" effect="dark" :content="childItem.dName" placement="top-start"
popper-class="max-w250"> popper-class="max-w250">
<p class="_add_info"> <p class="_add_info">
<span>{{$t('system.query_flightAir')}}{{item.dName}}</span> <span>{{$t('system.query_flightAir')}}{{childItem.dName}}</span>
</p> </p>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" :content="item.aName" placement="top-start" <el-tooltip class="item" effect="dark" :content="childItem.aName" placement="top-start"
popper-class="max-w250"> popper-class="max-w250">
<p class="_add_info"> <p class="_add_info">
<span>{{$t('system.query_arrivalAir')}}{{item.aName }}</span> <span>{{$t('system.query_arrivalAir')}}{{childItem.aName }}</span>
</p> </p>
</el-tooltip> </el-tooltip>
</div> </div>
...@@ -280,7 +280,45 @@ ...@@ -280,7 +280,45 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div> </div> -->
<table border="0" cellspacing="0" cellpadding="0" class="singeRowTable">
<tr>
<th>航班号</th>
<th>开始时间</th>
<th>结束时间</th>
<th>出发时间</th>
<th>起飞机场</th>
<th>到达机场</th>
</tr>
<tr v-for="item in flightList">
<td>{{item.Flight_number}}</td>
<td>{{item.TicketDepartureTime}}</td>
<td>{{item.TicketArrivalTime}}</td>
<td>{{item.FlightDate}}</td>
<td>{{item.dName}}</td>
<td>{{item.aName}}</td>
</tr>
</table>
<table border="0" cellspacing="0" cellpadding="0" class="singeRowTable" style="margin-top:20px;">
<tr>
<th>航班号</th>
<th>开始时间</th>
<th>结束时间</th>
<th>出发时间</th>
<th>起飞机场</th>
<th>到达机场</th>
</tr>
<template v-for="item in combineTeamList">
<tr v-for="subItem in item.List">
<td>{{subItem.Flight_number}}</td>
<td>{{subItem.TicketDepartureTime}}</td>
<td>{{subItem.TicketArrivalTime}}</td>
<td>{{subItem.FlightDate}}</td>
<td>{{subItem.dName}}</td>
<td>{{subItem.aName}}</td>
</tr>
</template>
</table>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<button class="normalBtn" type="primary" @click="getCheckInfo()">确认航班信息</button> &nbsp; <button class="normalBtn" type="primary" @click="getCheckInfo()">确认航班信息</button> &nbsp;
<button class="hollowFixedBtn" @click="outerVisible = false">{{$t('pub.cancelBtn')}}</button> <button class="hollowFixedBtn" @click="outerVisible = false">{{$t('pub.cancelBtn')}}</button>
......
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