Commit ab506b18 authored by 黄奎's avatar 黄奎

11

parent 7a0ad137
......@@ -242,6 +242,19 @@
</el-select>
</span>
</li>
<li>
<span>
<em>
{{ $t("system.query_airCompanyName") }}
</em>
</span>
<el-select v-model="msg.QAirlineId" filterable :placeholder="$t('system.ph_buxian')" class="w150">
<el-option :label="$t('system.ph_buxian')" :value="0">
</el-option>
<el-option v-for="item in AirlineList" :key="item.AirLineId" :label="item.AlName" :value="item.AirLineId">
</el-option>
</el-select>
</li>
<li>
<span>
<em>{{$t('admin.admin_czPerson')}}</em>
......@@ -320,7 +333,8 @@
QCityId: 0,
//操作人
QCreateBy: "",
FlightDate: ""
FlightDate: "",
QAirlineId: "", //航空公司
},
//线路列表
LineList: [],
......@@ -338,10 +352,24 @@
EmployeeList: [],
TotalCount: 0,
TotalSeat: 0,
loading:false
loading: false,
//航空公司
AirlineList: [],
};
},
methods: {
//获取航空公司
getAirlineList() {
this.apipost(
"airline_post_GetList", {},
(res) => {
if (res.data.resultCode == 1) {
this.AirlineList = res.data.data;
}
},
(err) => {}
);
},
//获取线路列表
GetLineList() {
this.apipost(
......@@ -410,13 +438,13 @@
},
//点击获取机票库存数据
GetHoltelInventory() {
this.loading=true;
this.loading = true;
this.msg.FlightDate = this.currentYear + "-" + this.currentMonth + "-01";
this.apipost(
"AirTicket_get_GetMonthAirticketFlight",
this.msg,
res => {
this.loading=false;
this.loading = false;
this.DayData = res.data.data;
this.TotalCount = 0;
this.TotalSeat = 0;
......@@ -488,6 +516,7 @@
let myDate = new Date();
this.currentYear = myDate.getFullYear();
this.currentMonth = myDate.getMonth() + 1;
this.getAirlineList();
this.getEmployeeList();
this.getCityList();
this.GetLineList();
......
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