Commit 0e3e905d authored by zhengke's avatar zhengke

修改

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