Commit 56b2f2af authored by 黄奎's avatar 黄奎

页面修改

parent 19367eaa
...@@ -214,7 +214,6 @@ ...@@ -214,7 +214,6 @@
<tr> <tr>
<td width="70" style="text-align:center;" colspan="2"> <td width="70" style="text-align:center;" colspan="2">
<span style="color:green">{{subItem.NewHotelName}}</span> <span style="color:green">{{subItem.NewHotelName}}</span>
<el-popover placement="right" width="540" trigger="click" > <el-popover placement="right" width="540" trigger="click" >
<comCheckHotel :ref="'comCheckHotel'+index+subIndex+''" v-on:childHotel="childHotelList" <comCheckHotel :ref="'comCheckHotel'+index+subIndex+''" v-on:childHotel="childHotelList"
:UseDate="item.UseTimeStr" :Country="ChooseCountry" > :UseDate="item.UseTimeStr" :Country="ChooseCountry" >
......
...@@ -68,8 +68,8 @@ ...@@ -68,8 +68,8 @@
<input type="button" class="normalBtn" value="查询" @click="getCheckHotel()" /> <input type="button" class="normalBtn" value="查询" @click="getCheckHotel()" />
</div> </div>
</div> </div>
<div> <div v-loading="hotelLoading" >
<el-tabs type="border-card" v-loading="loading" v-if="IsShow" > <el-tabs type="border-card" v-if="IsShow" >
<el-tab-pane :label="item.ProvinceName" v-for="(item,index) in dataList" :key="item.subCode"> <el-tab-pane :label="item.ProvinceName" v-for="(item,index) in dataList" :key="item.subCode">
<div class="clearfix comCheckHotel"> <div class="clearfix comCheckHotel">
<div class="comCk_list" v-for="(subItem,subIndex) in item.HotelList"> <div class="comCk_list" v-for="(subItem,subIndex) in item.HotelList">
...@@ -87,6 +87,8 @@ ...@@ -87,6 +87,8 @@
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>
<br/>
<br/>
<input type="button" class="normalBtn com_SaveBtn" @click="sendCkedHotel()" value="保存" /> <input type="button" class="normalBtn com_SaveBtn" @click="sendCkedHotel()" value="保存" />
</div> </div>
</template> </template>
...@@ -95,7 +97,7 @@ ...@@ -95,7 +97,7 @@
props: ["UseDate","Country"], props: ["UseDate","Country"],
data() { data() {
return { return {
loading:false, hotelLoading:false,
dataList: [], dataList: [],
ProvinceList: [], ProvinceList: [],
qMsg:{ qMsg:{
...@@ -108,7 +110,7 @@ ...@@ -108,7 +110,7 @@
}, },
methods: { methods: {
getCheckHotel() { getCheckHotel() {
this.loading=true; this.hotelLoading=true;
this.IsShow=false; this.IsShow=false;
this.dataList = []; this.dataList = [];
this.HotelList = []; this.HotelList = [];
...@@ -121,7 +123,7 @@ ...@@ -121,7 +123,7 @@
Name:this.qMsg.Name, Name:this.qMsg.Name,
sDate: this.UseDate sDate: this.UseDate
}, res => { }, res => {
this.loading=false; this.hotelLoading=false;
this.IsShow=true; this.IsShow=true;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.dataList = res.data.data; this.dataList = res.data.data;
...@@ -189,12 +191,10 @@ ...@@ -189,12 +191,10 @@
tab: '报价详情' tab: '报价详情'
} }
}); });
} }
}, },
mounted() { mounted() {
this.getProvinceList(); this.getProvinceList();
} }
}; };
</script>
</script> \ No newline at end of file
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