|
@@ -13,7 +13,7 @@
|
|
|
<!-- 民宿名称区域 -->
|
|
<!-- 民宿名称区域 -->
|
|
|
<view class="header_name">{{ detailInfo.hotel_name }}</view>
|
|
<view class="header_name">{{ detailInfo.hotel_name }}</view>
|
|
|
<!-- 开业时间区域 -->
|
|
<!-- 开业时间区域 -->
|
|
|
- <view class="header_info">{{ detailInfo.openTime }}开业 I {{ detailInfo.fitupTime }}装修 I {{ detailInfo.roomNumber }}间客房</view>
|
|
|
|
|
|
|
+ <view class="header_info">{{ detailInfo.openTime }}开业 I {{ detailInfo.fitupTime }}装修 I {{ detailInfo.room_number_calc }}间客房</view>
|
|
|
<!-- 类型区域 -->
|
|
<!-- 类型区域 -->
|
|
|
<view class="header_types">
|
|
<view class="header_types">
|
|
|
<view class="types_item">{{ detailInfo.hTypeName }}</view>
|
|
<view class="types_item">{{ detailInfo.hTypeName }}</view>
|
|
@@ -26,7 +26,7 @@
|
|
|
<view class="body_towns">所属乡镇:{{ detailInfo.hotelTownshipName }}</view>
|
|
<view class="body_towns">所属乡镇:{{ detailInfo.hotelTownshipName }}</view>
|
|
|
<view class="body_address">
|
|
<view class="body_address">
|
|
|
<view class="address_text">地址:</view>
|
|
<view class="address_text">地址:</view>
|
|
|
- <view>
|
|
|
|
|
|
|
+ <view class="address_info">
|
|
|
{{ detailInfo.hposition }}
|
|
{{ detailInfo.hposition }}
|
|
|
<img src="../../static/index/address.png" @click="handleMap" />
|
|
<img src="../../static/index/address.png" @click="handleMap" />
|
|
|
</view>
|
|
</view>
|
|
@@ -228,7 +228,6 @@ export default {
|
|
|
.body_address {
|
|
.body_address {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
padding-right: 20rpx;
|
|
padding-right: 20rpx;
|
|
|
- height: auto;
|
|
|
|
|
line-height: 55rpx;
|
|
line-height: 55rpx;
|
|
|
font-size: 28rpx;
|
|
font-size: 28rpx;
|
|
|
|
|
|
|
@@ -236,10 +235,14 @@ export default {
|
|
|
width: 105rpx;
|
|
width: 105rpx;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- img {
|
|
|
|
|
- margin-left: 20rpx;
|
|
|
|
|
- width: 28rpx;
|
|
|
|
|
- height: 28rpx;
|
|
|
|
|
|
|
+ .address_info {
|
|
|
|
|
+ flex: 1;
|
|
|
|
|
+
|
|
|
|
|
+ img {
|
|
|
|
|
+ margin-left: 20rpx;
|
|
|
|
|
+ width: 28rpx;
|
|
|
|
|
+ height: 28rpx;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|