Commit ab506b18 authored by 黄奎's avatar 黄奎

11

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