Commit 12929930 authored by 黄奎's avatar 黄奎

新增显示中段PNR

parent 239e30b1
......@@ -1676,7 +1676,9 @@
</div>
</el-col>
<el-col :span="8">
<div class="TCID_cont" style="padding-top:5px;">PNR:{{item.PNR}}</div>
<div class="TCID_cont" style="padding-top:5px;">PNR:{{item.PNR}}
<template v-if="item.MidpiecePNR">&nbsp;&nbsp;中段PNR:{{item.MidpiecePNR}}</template>
</div>
</el-col>
</el-row>
</li>
......
......@@ -867,7 +867,7 @@
</el-col>
<el-col :span="8">
<div class="TCID_cont">
PNR:{{item.PNR}}
PNR:{{item.PNR}} <template v-if="item.MidpiecePNR">&nbsp;&nbsp;中段PNR:{{item.MidpiecePNR}}</template>
</div>
</el-col>
</el-row>
......@@ -991,6 +991,7 @@
if (res.data.resultCode == 1) {
this.Query.total = res.data.data.count;
this.dataList = res.data.data.pageData;
console.log("dataList",this.dataList);
this.noData = !this.Query.total > 0;
if (this.Query.AirticketId == 0) {
this.Query.AirticketId = "";
......
......@@ -850,7 +850,7 @@
</el-col>
<el-col :span="10">
<div class="TCID_cont">
PNR:{{item.PNR}}
PNR:{{item.PNR}}<template v-if="item.MidpiecePNR">&nbsp;&nbsp;中段PNR:{{item.MidpiecePNR}}</template>
</div>
</el-col>
</el-row>
......
......@@ -649,6 +649,7 @@
<th width="70" style="text-align:center;">机票数量</th>
<th width="70" style="text-align:center;">价格</th>
<th width="130" style="text-align:center;">PNR</th>
<th width="130" style="text-align:center;">中段PNR</th>
<th width="100" style="text-align:center;">票务</th>
</tr>
<tr v-for="subItem in item.TicketList">
......@@ -656,6 +657,7 @@
<td style="text-align:center;">{{subItem.TicketNum}}</td>
<td style="text-align:center;">{{subItem.TicketPrice}}</td>
<td style="text-align:center;">{{subItem.PNR}}</td>
<td style="text-align:center;">{{subItem.MidpiecePNR}}</td>
<td style="text-align:center;">{{subItem.TicketCreateByName}}</td>
</tr>
</table>
......
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