Commit d7088084 authored by 吴春's avatar 吴春

1

parent 3594f96a
......@@ -829,7 +829,11 @@
<div class="rounded-borders bg-white row items-center q-pb-md" style="margin-top:20px;width: 1300px;">
<div class="row q-px-lg q-mb-lg row justify-between " style="width:100%;">
<div style=" border-bottom: 1px solid #ddd; width:100%;padding-bottom:8px;" class="text-weight-bold">酒店详情</div>
<div class="q-pt-sm">我是详情哈哈哈哈哈</div>
<template v-if="DidaDescription&&DidaDescription.length>0">
<div class="q-pt-sm" v-for="(item, index) in DidaDescription">
{{item.HotelDescription_CN}}
</div>
</template>
</div>
</div>
......@@ -873,6 +877,7 @@ export default {
ScatMeaList: [] , //散客房间餐型
HotelMealTypes:[],//餐食类型
DidaHotelDetails:{},
DidaDescription:[],
DidaHotelImg:[],
WeekList: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"], //周一至周日
checkInWeek: "", //周一至周日
......@@ -1071,6 +1076,17 @@ export default {
}
}, null)
},
//获取酒店详情信息
getDidaDescriptionList() {
this.apipost('dmc_post_GetDidaDescriptionList', this.hotelMsg, res=>{
this.loading = false
if (res.data.resultCode == 1) {
this.DidaDescription = res.data.data;
}
}, null)
},
//日期格式化
getformatDateStr(value) {
......@@ -1253,6 +1269,7 @@ export default {
this.getDiDaPriceSearchList();
this.getDiDaHotelImgList();
this.getDidaHotelDetails();
this.getDidaDescriptionList();
}
};
......
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