Commit 0e3e905d authored by zhengke's avatar zhengke

修改

parent f728b5ce
...@@ -386,9 +386,7 @@ ...@@ -386,9 +386,7 @@
<div> <div>
<h3>酒店介绍</h3> <h3>酒店介绍</h3>
</div> </div>
<div class="hotel-inner"> <div class="hotel-inner" v-html="tempData.SHotelInfo"></div>
{{dataList[0].Description}}
</div>
</div> </div>
<div class="hotel-desc hotel-facility"> <div class="hotel-desc hotel-facility">
<div> <div>
...@@ -396,31 +394,54 @@ ...@@ -396,31 +394,54 @@
</div> </div>
<div class="hotel-inner"> <div class="hotel-inner">
<ul> <ul>
<li> <template v-if="tempData.PublicFacilitiesList&&tempData.PublicFacilitiesList.length>0">
<label>公共设施</label> <li>
<div style="overflow:hidden;"> <label>公共设施</label>
<template v-if="tempData.PublicFacilitiesList&&tempData.PublicFacilitiesList.length>0"> <div style="overflow:hidden;">
<span v-for="(item,index) in tempData.PublicFacilitiesList" :key="index">{{item.HName}}</span> <span v-for="(item,index) in tempData.PublicFacilitiesList" :key="index">{{item.HName}}</span>
</template> </div>
</div> </li>
</li> </template>
<li> <template v-if="tempData.RoomFacilitiesList&&tempData.RoomFacilitiesList.length>0">
<label>活动设施</label> <li>
<div style="overflow:hidden;"> <label>客房设施</label>
<template v-if="tempData.ActivityFacilitiesList&&tempData.ActivityFacilitiesList.length>0"> <div style="overflow:hidden;">
<span v-for="(item,index) in tempData.RoomFacilitiesList" :key="index">{{item.HName}}</span>
</div>
</li>
</template>
<template v-if="tempData.ActivityFacilitiesList&&tempData.ActivityFacilitiesList.length>0">
<li>
<label>活动设施</label>
<div style="overflow:hidden;">
<span v-for="(item,index) in tempData.ActivityFacilitiesList" :key="index">{{item.HName}}</span> <span v-for="(item,index) in tempData.ActivityFacilitiesList" :key="index">{{item.HName}}</span>
</template> </div>
</div> </li>
</li> </template>
<template v-if="tempData.SHotelServiceList&&tempData.SHotelServiceList.length>0">
<li> <li>
<label>客房设施</label> <label>酒店设施</label>
<div style="overflow:hidden;"> <div style="overflow:hidden;">
<template v-if="tempData.RoomFacilitiesList&&tempData.RoomFacilitiesList.length>0"> <span v-for="(item,index) in tempData.SHotelServiceList" :key="index">{{item.HName}}</span>
<span v-for="(item,index) in tempData.RoomFacilitiesList" :key="index">{{item.HName}}</span> </div>
</template> </li>
</div> </template>
</li> <template v-if="tempData.SPayTypeList&&tempData.SPayTypeList.length>0">
<li>
<label>支付方式</label>
<div style="overflow:hidden;">
<span v-for="(item,index) in tempData.SPayTypeList" :key="index">{{item.HName}}</span>
</div>
</li>
</template>
<template v-if="tempData.DeskLanguageList&&tempData.DeskLanguageList.length>0">
<li>
<label>前台语言</label>
<div style="overflow:hidden;">
<span v-for="(item,index) in tempData.DeskLanguageList" :key="index">{{item.HName}}</span>
</div>
</li>
</template>
</ul> </ul>
</div> </div>
</div> </div>
...@@ -575,7 +596,7 @@ export default { ...@@ -575,7 +596,7 @@ export default {
//获取详情 //获取详情
getData() { getData() {
this.apipost("scm_get_GetSCMHotelService", { this.apipost("scm_get_GetSCMHotelService", {
SID: 1 SID: this.HotelId
}, },
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
......
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