unknown 22ecf2636f 修复
1. 修复管理员选择上午后不能选择其他时段的BUG
2. 放开管理员预约记录,点击首页预约记录查看所
2024-10-08 16:09:43 +08:00

64 lines
2.8 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 wx:if="{{canRes}}" class="submitBtn" bind:tap="jumpMeetingBooked">会议预约</view>
</view>