50 lines
2.1 KiB
Plaintext
Raw Normal View History

2024-03-02 18:14:38 +08:00
<view class="containerView public">
2024-03-04 14:38:21 +08:00
<view class="dataView">
<!-- 标题 -->
<view class="leftLineTitle">会议预约情况</view>
<!-- 预约列表 -->
2024-03-04 16:37:45 +08:00
<view class="itemVIew" wx:for="{{dataList}}" wx:for-item="item" wx:key="*this">
2024-03-04 14:38:21 +08:00
<view class="item">{{item.nowDate}}</view>
2024-03-04 16:37:45 +08:00
<view class="itemTimeView" wx:for="{{item.reservations}}" wx:for-item="record" wx:key="*this">
2024-03-04 14:38:21 +08:00
<view class="time">{{record.startTime}}~{{record.endDate}}</view>
2024-03-06 16:50:15 +08:00
<view class="status">已预约</view>
2024-03-04 14:38:21 +08:00
</view>
</view>
</view>
2024-03-02 18:14:38 +08:00
2024-03-04 14:38:21 +08:00
<!-- 预约时间 -->
<view class="submitBtn" bind:tap="reservationTime">预约时间</view>
<!-- 选择时间 -->
<view class="selfPop" wx:if="{{showTime}}">
2024-03-05 17:40:50 +08:00
<view class="labelView">
<view class="leftLineTitle">请选择开始时间</view>
</view>
2024-03-18 11:39:25 +08:00
<view class="labelTimeView">
<view>年</view>
<view>月</view>
<view>日</view>
<view>时</view>
<view>分</view>
</view>
<van-datetime-picker type="datetime" visible-item-count="5" value="{{ startTime }}" min-date="{{ minTime }}" max-date="{{ maxTime }}" bind:input="onInputStartTime" bind:confirm="confirmTime" bind:cancel="cancelTime" confirm-button-text="" cancel-button-text="" filter="{{ filterTime }}" />
2024-03-04 14:38:21 +08:00
2024-03-05 17:40:50 +08:00
<view class="labelView">
<view class="leftLineTitle">请选择结束时间</view>
<view class="enter" bind:tap="confirmTime">确定</view>
</view>
2024-03-18 11:39:25 +08:00
<view class="labelTimeView">
<view>年</view>
<view>月</view>
<view>日</view>
<view>时</view>
<view>分</view>
</view>
<van-datetime-picker type="datetime" visible-item-count="4" value="{{ endTime }}" min-date="{{ startTime }}" max-date="{{ endMaxTime }}" bind:input="onInputEndTime" bind:confirm="confirmTime" confirm-button-text="" cancel-button-text="" bind:cancel="cancelTime" filter="{{ filterTime }}" />
2024-03-04 14:38:21 +08:00
</view>
2024-03-02 18:14:38 +08:00
2024-03-04 16:37:45 +08:00
<!-- 消息提示 -->
<van-notify id="notify" />
2024-03-02 18:14:38 +08:00
</view>