Commit e8857df5 authored by zhengke's avatar zhengke

修改显示

parent b454f570
...@@ -516,6 +516,13 @@ ...@@ -516,6 +516,13 @@
margin-top:27px; margin-top:27px;
border:1px solid #DDDDDD; border:1px solid #DDDDDD;
} }
.BackRuleHotel{
display:inline-block;
width:85%;
margin-top:10px;
color:#EE4454;
line-height: 2;
}
</style> </style>
<template> <template>
...@@ -673,12 +680,28 @@ ...@@ -673,12 +680,28 @@
<img src="../../assets/img/hotel/hotel.png" alt=""> <img src="../../assets/img/hotel/hotel.png" alt="">
酒店信息 酒店信息
</div> </div>
<div class="HD_hotelComIntroduce" style="color:#42647f;"> <div class="HD_hotelComIntroduce" style="color:#42647f;padding-bottom:0;">
<h3 class="Hd_titles">酒店介绍</h3> <h3 class="Hd_titles">酒店介绍</h3>
<div style="line-height:2;" v-html="tempData.SHotelInfo"></div> <div style="line-height:2;" v-html="tempData.SHotelInfo"></div>
<div style="margin:10px 0;">酒店联系方式:{{tempData.HotelContract}}</div> <div class="hotel-inner" style="margin-top:20px;">
<div> <ul>
退订原则:{{tempData.BackRule}} <template v-if="tempData.HotelContract!=''&&tempData.HotelContract!=null">
<li>
<label style="margin-top:0">酒店联系方式</label>
<div>
<span>{{tempData.HotelContract}}</span>
</div>
</li>
</template>
<template v-if="tempData.BackRule!=''&&tempData.BackRule!=null">
<li>
<label style="margin-top:15px;">退订原则</label>
<div>
<span class="BackRuleHotel">{{tempData.BackRule}}</span>
</div>
</li>
</template>
</ul>
</div> </div>
</div> </div>
<div class="HD_hotelComIntroduce introduceSupplier"> <div class="HD_hotelComIntroduce introduceSupplier">
...@@ -851,8 +874,8 @@ export default { ...@@ -851,8 +874,8 @@ export default {
this.tempData = res.data.data; this.tempData = res.data.data;
this.images=this.tempData.SHotelImgCoverArray; this.images=this.tempData.SHotelImgCoverArray;
this.isShowImg=true; this.isShowImg=true;
this.travelLngLat=[] this.travelLngLat=[];
if(this.tempData.Lng!=''&&this.tempData.Lat!=''){ if((this.tempData.Lng!=''&&this.tempData.Lat!='')&&(this.tempData.Lng!=null&&this.tempData.Lat!=null)){
this.travelLngLat.push({ this.travelLngLat.push({
lat: this.tempData.Lat, lat: this.tempData.Lat,
lng: this.tempData.Lng, lng: this.tempData.Lng,
......
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