mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 14:19:38 +08:00
29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
<view class="containerView public">
|
|
|
|
<view class="dataView">
|
|
<!-- 标题 -->
|
|
<view class="leftLineTitle">会议预约情况</view>
|
|
<!-- 预约列表 -->
|
|
<view class="itemVIew" wx:for="{{dataList}}" wx:for-item="item" wx:key="*this">
|
|
<view class="item">{{item.nowDate}}</view>
|
|
<view class="itemTimeView" wx:for="{{item.reservations}}" wx:for-item="record" wx:key="*this">
|
|
<view class="time">{{record.startTime}}~{{record.endDate}}</view>
|
|
<view class="status">{{record.statusName}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 预约时间 -->
|
|
<view class="submitBtn" bind:tap="reservationTime">预约时间</view>
|
|
|
|
<!-- 选择时间 -->
|
|
<view class="selfPop" wx:if="{{showTime}}">
|
|
<van-datetime-picker title="请选择开始时间" type="datetime" value="{{ startTime }}" min-date="{{ minTime }}" max-date="{{ maxTime }}" bind:input="onInputStartTime" bind:confirm="confirmTime" bind:cancel="cancelTime" confirm-button-text="" cancel-button-text="" />
|
|
|
|
<van-datetime-picker title="请选择结束时间" type="datetime" value="{{ endTime }}" min-date="{{ startTime }}" max-date="{{ endMaxTime }}" bind:input="onInputEndTime" bind:confirm="confirmTime" bind:cancel="cancelTime" />
|
|
</view>
|
|
|
|
<!-- 消息提示 -->
|
|
<van-notify id="notify" />
|
|
|
|
</view> |