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

页面修改

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