Commit 34c07249 authored by 黄奎's avatar 黄奎

出团通知航班修改

parent 412b92d4
...@@ -2337,7 +2337,9 @@ ...@@ -2337,7 +2337,9 @@
<el-dialog custom-class='passgenrDialog' title="航班列表" :visible.sync="outerVisible" center> <el-dialog custom-class='passgenrDialog' title="航班列表" :visible.sync="outerVisible" center>
<table border="0" cellspacing="0" cellpadding="0" class="singeRowTable"> <table border="0" cellspacing="0" cellpadding="0" class="singeRowTable">
<tr> <tr>
<td colspan="6" style="text-align:left;font-weight:bold;padding-left:5px">票务航班信息</td> <td colspan="7" style="text-align:left;font-weight:bold;padding-left:5px">票务航班信息
<span style="color:red">{{flightIsConfirmFlight==1?"已确认":"未确认"}}</span>
</td>
</tr> </tr>
<tr> <tr>
<th>航班号</th> <th>航班号</th>
...@@ -2346,6 +2348,7 @@ ...@@ -2346,6 +2348,7 @@
<th>出发时间</th> <th>出发时间</th>
<th>起飞机场</th> <th>起飞机场</th>
<th>到达机场</th> <th>到达机场</th>
<th>经停机场</th>
</tr> </tr>
<tr v-for="item in flightList"> <tr v-for="item in flightList">
<td>{{item.Flight_number}}</td> <td>{{item.Flight_number}}</td>
...@@ -2354,6 +2357,7 @@ ...@@ -2354,6 +2357,7 @@
<td>{{item.FlightDate}}</td> <td>{{item.FlightDate}}</td>
<td>{{item.dName}}</td> <td>{{item.dName}}</td>
<td>{{item.aName}}</td> <td>{{item.aName}}</td>
<td>{{item.sName}}</td>
</tr> </tr>
</table> </table>
<table border="0" cellspacing="0" cellpadding="0" class="singeRowTable" style="margin-top:20px;" v-if="combineTeamList.length>0"> <table border="0" cellspacing="0" cellpadding="0" class="singeRowTable" style="margin-top:20px;" v-if="combineTeamList.length>0">
...@@ -2778,6 +2782,8 @@ import updateSalesMan from "../../commonPage/updateSalesMan.vue"; ...@@ -2778,6 +2782,8 @@ import updateSalesMan from "../../commonPage/updateSalesMan.vue";
CreateBy:'', CreateBy:'',
OrderId:0 OrderId:0
}, },
//航班是否确认
flightIsConfirmFlight:0,
flightList:[], flightList:[],
combineTeamList:[], combineTeamList:[],
}; };
...@@ -4062,6 +4068,7 @@ submitYSZEForm(){ ...@@ -4062,6 +4068,7 @@ submitYSZEForm(){
} }
this.apipost("ticket_get_GetEntityExtend", msg, res => { this.apipost("ticket_get_GetEntityExtend", msg, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.flightIsConfirmFlight=res.data.data.IsConfirmFlight;
this.flightList = res.data.data.flightList; this.flightList = res.data.data.flightList;
} 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