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

页面修改

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