Commit 0cef192f authored by 黄奎's avatar 黄奎

页面修改

parent 7b50b5b9
......@@ -58,7 +58,7 @@
</el-select>
</div>
<div>
<el-tabs type="border-card" v-loading="loading">
<el-tabs type="border-card" v-loading="loading" v-if="IsShow" >
<el-tab-pane :label="item.ProvinceName" v-for="(item,index) in dataList" >
<div class="clearfix comCheckHotel">
<div>
......@@ -84,11 +84,13 @@
dataList: [],
ProvinceList: [],
ProvinceId: 0, //选择个省份编号
IsShow:false,
};
},
methods: {
getCheckHotel() {
this.loading=true;
this.IsShow=false;
this.dataList = [];
this.HotelList = [];
this.apipost('hotel_post_GetHasStockHotelList_V2', {
......@@ -100,6 +102,7 @@
sDate: this.UseDate
}, res => {
this.loading=false;
this.IsShow=true;
if (res.data.resultCode == 1) {
this.dataList = res.data.data;
this.dataList.forEach(x => {
......
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