Commit 471d42e7 authored by 黄奎's avatar 黄奎

页面修改

parent 622f9c39
......@@ -116,8 +116,8 @@
</table>
</li>
<li>
<input type="button" class="normalBtn" value="导出报表" @click="getFlightInfo(),getCombinTeam()" style="display:none" />
<input type="button" class="normalBtn" value="导出报表" @click="exportExcel()" />
<input type="button" class="normalBtn" value="导出报表" @click="getFlightInfo(),getCombinTeam()" />
<input type="button" class="normalBtn" value="导出报表" @click="exportExcel()" style="display:none" />
</li>
</ul>
</div>
......@@ -336,12 +336,20 @@
}
FlightList.push(obj);
})
var unionFlightList=[];
var unionFlightList = [];
this.combineTeamList.forEach(item => {
unionFlightList.push({
Id: item.Id,
GoDepartTime: item.GoDepartTime,
GoArriveTime: item.GoArriveTime,
BackDepartTime: item.BackDepartTime,
BackArriveTime: item.BackArriveTime
});
});
let msg = {
AirTicketId: this.$route.query.id,
FlightList: FlightList,
UnionFlightList:unionFlightList
UnionFlightList: unionFlightList
}
this.apipost("ticket_post_SetFlightChildConfirm", msg, res => {
if (res.data.resultCode == 1) {
......
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