2024-03-02 18:14:38 +08:00
|
|
|
|
<view class="containerView public">
|
2024-02-26 19:30:25 +08:00
|
|
|
|
<!-- 轮播图 -->
|
|
|
|
|
<swiper class='swiper-box' indicator-dots autoplay interval="3000" duration="1000" circular='true'>
|
|
|
|
|
<swiper-item wx:for="{{bannerList}}" wx:key="index">
|
2024-03-02 16:27:19 +08:00
|
|
|
|
<image class="img" src="{{IMG_NAME + item}}" mode="aspectFill"></image>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</swiper-item>
|
|
|
|
|
</swiper>
|
|
|
|
|
|
|
|
|
|
<!-- 会议室详细信息 -->
|
|
|
|
|
<view class="roomView">
|
|
|
|
|
<!-- 类型信息 -->
|
|
|
|
|
<view class="typeView">
|
|
|
|
|
<view class="typeItem">
|
|
|
|
|
<view class="name">所在楼层</view>
|
2024-03-02 16:27:19 +08:00
|
|
|
|
<view class="value">{{detail.buildingName}}</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="typeItem">
|
|
|
|
|
<view class="name">空间面积</view>
|
2024-03-02 16:27:19 +08:00
|
|
|
|
<view class="value">{{detail.renArea}}m</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</view>
|
2024-03-04 14:38:21 +08:00
|
|
|
|
<view class="typeItem">
|
|
|
|
|
<view class="name">形式</view>
|
|
|
|
|
<view class="value">{{detail.shape}}</view>
|
|
|
|
|
</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 文字内容 -->
|
2024-03-07 17:28:04 +08:00
|
|
|
|
<view class="content">{{detail.content ? detail.content : ''}}</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 设施 -->
|
2024-07-16 16:41:38 +08:00
|
|
|
|
<view class="facilitiesView">
|
2024-02-26 19:30:25 +08:00
|
|
|
|
<view class="leftLineTitle">空间设施</view>
|
|
|
|
|
<view class="itemView">
|
2024-07-16 16:41:38 +08:00
|
|
|
|
<view class="singleItem" wx:for="{{detail.roomItemList}}" wx:for-item="serviceItem" wx:key="*this">
|
|
|
|
|
<image class="img" src="{{IMG_NAME + serviceItem.picUrl}}" mode="aspectFill"></image>
|
|
|
|
|
<view class="name">{{serviceItem.name}}</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 价格 -->
|
2024-06-25 17:33:04 +08:00
|
|
|
|
<!-- <view class="priceView">
|
2024-02-26 19:30:25 +08:00
|
|
|
|
<view class="leftLineTitle">价格</view>
|
2024-05-17 14:40:09 +08:00
|
|
|
|
<view class="content">¥{{detail.money > 0 ? detail.money + '/小时' : '免费'}}<text decode> </text>({{detail.duration}}小时起)</view>
|
2024-03-28 16:26:33 +08:00
|
|
|
|
<view class="remark" wx:if="{{detail.remake}}">
|
|
|
|
|
<van-icon name="info-o" size="28rpx" />
|
|
|
|
|
{{detail.remake}}
|
|
|
|
|
</view>
|
2024-06-25 17:33:04 +08:00
|
|
|
|
</view> -->
|
2024-02-26 19:30:25 +08:00
|
|
|
|
|
|
|
|
|
<!-- 地图 -->
|
|
|
|
|
<view class="mapView">
|
2024-06-25 17:33:04 +08:00
|
|
|
|
<view class="leftLineTitle">会议地点</view>
|
2024-03-06 20:27:42 +08:00
|
|
|
|
<map class="myMap" latitude="{{mapData.latitude}}" longitude="{{mapData.longitude}}" markers="{{mapData.markers}}" show-location bindtap="openMap"></map>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 预约 -->
|
2024-03-06 22:00:22 +08:00
|
|
|
|
<view class="submitBtn" bind:tap="jumpMeetingBooked">会议预约</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
|
|
|
|
|
</view>
|