2025-05-21 16:42:30 +08:00

67 lines
2.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="containerView public">
<!-- 轮播图 -->
<view class="swiperView">
<view class="tag">{{detail.name}}</view>
<swiper class='swiper-box' indicator-dots autoplay interval="3000" duration="1000" circular='true'>
<swiper-item wx:for="{{bannerList}}" wx:key="index">
<image class="img" src="{{IMG_NAME + item}}" mode="aspectFill"></image>
</swiper-item>
</swiper>
</view>
<view class="meetingDetailView">
<view class="detailView">
<view class="title">{{detail.floor}} | {{detail.roomNum}}会议室 | {{detail.capacityNum}}人 | {{detail.typeName}}</view>
<view class="itemList">
{{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> -->
</view>
</view>
</view>
<!-- 会议室详细信息 -->
<view class="facilitiesView">
<view class="leftLineTitle">会议室描述</view>
<view class="content">{{detail.content ? detail.content : '无描述'}}</view>
</view>
<view class="resView">
<view class="leftLineTitle">预约情况</view>
<van-cell-group>
<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 : '占用' }}" />
</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>
</view>
</view> -->
<!-- 价格 -->
<!-- <view class="priceView">
<view class="leftLineTitle">价格</view>
<view class="content">¥{{detail.money > 0 ? detail.money + '/小时' : '免费'}}<text decode>&nbsp;</text>{{detail.duration}}小时起)</view>
<view class="remark" wx:if="{{detail.remake}}">
<van-icon name="info-o" size="28rpx" />
{{detail.remake}}
</view>
</view> -->
<!-- 地图 -->
<!-- <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> -->
<!-- 预约 -->
<view style="width: 90%;margin: 0px auto;">
<van-button wx:if="{{canRes}}" type="info" bind:tap="jumpMeetingBooked" block>会议预约</van-button>
<van-button wx:if="{{!canRes}}" disabled type="info" block>当前时段不可预约</van-button>
</view>
</view>