Commit d1864399 authored by zhengke's avatar zhengke

修改passengertList

parent 471d42e7
<style> <style>
.PT_teamTable { .PT_teamTable {
width: 800px; width: 100%;
background-color: #fff; background-color: #fff;
border-collapse: collapse; border-collapse: collapse;
} }
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
line-height: 3 !important; line-height: 3 !important;
} }
.passgenrDialog{ .passgenrDialog{
width:900px; width:1000px;
} }
.PgflightDiv{ .PgflightDiv{
font-size: 12px; font-size: 12px;
...@@ -180,31 +180,14 @@ ...@@ -180,31 +180,14 @@
<td>{{item.aName}}</td> <td>{{item.aName}}</td>
</tr> </tr>
</table> </table>
<table border="0" cellspacing="0" cellpadding="0" class="singeRowTable" style="margin-top:20px;"> <table border="0" cellspacing="0" cellpadding="0" class="singeRowTable" style="margin-top:20px;" v-if="combineTeamList.length>0">
<tr> <tr>
<td colspan="16" style="text-align:left;font-weight:bold;padding-left:5px">联运航班信息</td> <td colspan="9" style="text-align:left;font-weight:bold;padding-left:5px">联运航班信息</td>
</tr>
<tr>
<th rowspan="2">
团号
</th>
<th rowspan="2">
公司/城市
</th>
<th colspan="6">
去程
</th>
<th colspan="6">
回程
</th>
</tr> </tr>
<tr> <tr>
<th>日期</th> <th>团号</th>
<th>航班号</th> <th>公司/城市</th>
<th>出发时间</th> <th>航段</th>
<th>到达时间</th>
<th>起飞机场</th>
<th>到达机场</th>
<th>日期</th> <th>日期</th>
<th>航班号</th> <th>航班号</th>
<th>出发时间</th> <th>出发时间</th>
...@@ -212,9 +195,11 @@ ...@@ -212,9 +195,11 @@
<th>起飞机场</th> <th>起飞机场</th>
<th>到达机场</th> <th>到达机场</th>
</tr> </tr>
<tr v-for="subItem in combineTeamList"> <tbody v-for="subItem in combineTeamList">
<td>{{subItem.TCNUM}}({{subItem.TCID}})</td> <tr>
<td>{{subItem.UnionBranchName}}({{subItem.UnionCityName}})</td> <td rowspan="2">{{subItem.TCNUM}}({{subItem.TCID}})</td>
<td rowspan="2">{{subItem.UnionBranchName}}({{subItem.UnionCityName}})</td>
<td width="50">去程</td>
<td>{{subItem.GoFlightDateStr}}</td> <td>{{subItem.GoFlightDateStr}}</td>
<td>{{subItem.GoFlight_number}}</td> <td>{{subItem.GoFlight_number}}</td>
<td> <td>
...@@ -225,6 +210,9 @@ ...@@ -225,6 +210,9 @@
</td> </td>
<td>{{subItem.GoDepartAirportName}}</td> <td>{{subItem.GoDepartAirportName}}</td>
<td>{{subItem.GoArrivalAirportName}}</td> <td>{{subItem.GoArrivalAirportName}}</td>
</tr>
<tr>
<td width="50">回程</td>
<td>{{subItem.BackFlightDateStr}}</td> <td>{{subItem.BackFlightDateStr}}</td>
<td>{{subItem.BackFlight_number}}</td> <td>{{subItem.BackFlight_number}}</td>
<td> <td>
...@@ -236,6 +224,7 @@ ...@@ -236,6 +224,7 @@
<td>{{subItem.BackDepartAirportName}}</td> <td>{{subItem.BackDepartAirportName}}</td>
<td>{{subItem.BackArrivalAirportName}}</td> <td>{{subItem.BackArrivalAirportName}}</td>
</tr> </tr>
</tbody>
</table> </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;
...@@ -319,7 +308,6 @@ ...@@ -319,7 +308,6 @@
this.apipost("ticket_get_GetUnionFlightAllInfo", msg, res => { this.apipost("ticket_get_GetUnionFlightAllInfo", msg, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.combineTeamList = res.data.data; this.combineTeamList = res.data.data;
console.log(this.combineTeamList, '联运信息');
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
} }
......
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