2024-03-02 18:14:38 +08:00
|
|
|
|
<view class="containerView public">
|
2024-09-16 18:22:00 +08:00
|
|
|
|
<!-- 轮播图 -->
|
|
|
|
|
<view class="swiperView">
|
2024-09-24 23:04:06 +08:00
|
|
|
|
<view class="tag">{{detail.name}}</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
<swiper class='swiper-box' indicator-dots autoplay interval="3000" duration="1000" circular='true'>
|
2024-09-16 18:22:00 +08:00
|
|
|
|
<swiper-item wx:for="{{bannerList}}" wx:key="index">
|
|
|
|
|
<image class="img" src="{{IMG_NAME + item}}" mode="aspectFill"></image>
|
|
|
|
|
</swiper-item>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</swiper>
|
2024-09-16 18:22:00 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="meetingDetailView">
|
|
|
|
|
<view class="detailView">
|
2024-09-24 23:04:06 +08:00
|
|
|
|
<view class="title">{{detail.floor}} | {{detail.roomNum}} | {{detail.capacityNum}}人 | {{detail.typeName}}</view>
|
2024-09-16 18:22:00 +08:00
|
|
|
|
<view class="itemList">
|
2024-09-24 23:04:06 +08:00
|
|
|
|
{{detail.device}}
|
|
|
|
|
<!-- <view class="item" wx:for="{{detail.roomItemList}}" wx:for-item="serviceItem" wx:key="*this">#{{serviceItem.name}}</view>
|
|
|
|
|
<view class="item" wx:for="{{detail.roomServeList}}" wx:for-item="serveItem" wx:key="*this">#{{serveItem.serveName}}</view> -->
|
2024-02-26 19:30:25 +08:00
|
|
|
|
|
2024-09-16 18:22:00 +08:00
|
|
|
|
</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</view>
|
2024-09-16 18:22:00 +08:00
|
|
|
|
</view>
|
|
|
|
|
<!-- 会议室详细信息 -->
|
|
|
|
|
<view class="facilitiesView">
|
|
|
|
|
<view class="leftLineTitle">会议室描述</view>
|
|
|
|
|
<view class="content">{{detail.content ? detail.content : '无描述'}}</view>
|
|
|
|
|
</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
|
2024-09-16 18:22:00 +08:00
|
|
|
|
<view class="resView">
|
|
|
|
|
<view class="leftLineTitle">预约情况</view>
|
|
|
|
|
<van-cell-group>
|
2024-10-08 16:09:43 +08:00
|
|
|
|
<van-cell bind:click="goResInfo" data-id="{{item.id}}" wx:for="{{recordList}}" title="{{item.date}}" value="{{item.time}}" title-width="70%" label="{{ item.userOrg ? item.userOrg + ' | ' + item.bookingUserName + ' | ' + item.bookingUserPhone : '占用' }}" />
|
2024-09-16 18:22:00 +08:00
|
|
|
|
</van-cell-group>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 设施 -->
|
|
|
|
|
<!-- <view class="facilitiesView">
|
|
|
|
|
<view class="leftLineTitle">空间设施</view>
|
|
|
|
|
<view class="itemView">
|
|
|
|
|
<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>
|
|
|
|
|
</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</view>
|
2024-09-16 18:22:00 +08:00
|
|
|
|
</view> -->
|
2024-02-26 19:30:25 +08:00
|
|
|
|
|
2024-09-16 18:22:00 +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
|
|
|
|
|
2024-09-16 18:22:00 +08:00
|
|
|
|
<!-- 地图 -->
|
|
|
|
|
<!-- <view class="mapView">
|
|
|
|
|
<view class="leftLineTitle">会议地点</view>
|
|
|
|
|
<map class="myMap" latitude="{{mapData.latitude}}" longitude="{{mapData.longitude}}" markers="{{mapData.markers}}" show-location bindtap="openMap"></map>
|
|
|
|
|
</view> -->
|
2024-02-26 19:30:25 +08:00
|
|
|
|
|
2024-09-16 18:22:00 +08:00
|
|
|
|
<!-- 预约 -->
|
2024-09-25 22:10:57 +08:00
|
|
|
|
<view wx:if="{{canRes}}" class="submitBtn" bind:tap="jumpMeetingBooked">会议预约</view>
|
2024-02-26 19:30:25 +08:00
|
|
|
|
</view>
|