2024-09-17 20:26:20 +08:00
|
|
|
<view class="containerView public">
|
|
|
|
<van-dropdown-menu>
|
|
|
|
<van-dropdown-item id="item" title="{{ search.title.text }}">
|
|
|
|
<van-cell>
|
|
|
|
<van-field clearable value="{{ search.title.value }}" placeholder="请输入会议名称模糊查询" bind:change="changeSearchTitle" />
|
|
|
|
</van-cell>
|
|
|
|
<view style="padding: 15px 16px;">
|
|
|
|
<van-button type="info" size="small" block round bind:click="searchTitle">
|
|
|
|
查询
|
|
|
|
</van-button>
|
|
|
|
</view>
|
|
|
|
</van-dropdown-item>
|
2025-05-28 11:43:10 +08:00
|
|
|
<van-dropdown-item id="status" title="{{ search.status.text }}" value="{{ search.status.value }}" options="{{ search.status.option }}" bind:change="changeSearchStatus" />
|
2024-09-17 20:26:20 +08:00
|
|
|
</van-dropdown-menu>
|
|
|
|
<view class="itemView" wx:for="{{reservationDataList}}" wx:for-item="item" wx:key="*this">
|
|
|
|
<view class="headView">
|
|
|
|
<view class="number">{{item.title}}</view>
|
|
|
|
<view class="status" style="color: {{item.statusColor}};">{{item.statusName}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="contentView" bind:tap="jumpMeetingDetail" data-id="{{item.id}}">
|
2024-09-27 17:37:49 +08:00
|
|
|
<image class="img" src="{{IMG_NAME + item.indoorPicUrlFirst}}" mode="aspectFill"></image>
|
2024-09-17 20:26:20 +08:00
|
|
|
<view class="msgView">
|
2024-09-27 17:37:49 +08:00
|
|
|
<view class="title">{{item.floor}} | {{item.roomNum}} | {{item.capacityNum}}人 | {{item.typeName}}</view>
|
2025-05-21 16:42:30 +08:00
|
|
|
<view class="name">预约人: {{item.userOrg}} - {{item.bookingUserName}}</view>
|
2024-09-17 20:26:20 +08:00
|
|
|
<view class="time">{{item.timeSlot}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="priceView">
|
2025-05-28 11:43:10 +08:00
|
|
|
<view class="cancelContent" wx:if="{{item.status == 1 && item.operate && item.operate.length > 0}}">取消原因:{{item.operate[item.operate.length - 1].content}}</view>
|
|
|
|
<view class="cancelContent" wx:if="{{item.status == 3 && item.operate && item.operate.length > 0}}">驳回原因:{{item.operate[item.operate.length - 1].content}}</view>
|
2024-09-17 20:26:20 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="loadAllLine" wx:if="{{reservationIsDataAll}}">
|
|
|
|
<van-divider class="van-divider" customStyle="font-size: 26rpx;" contentPosition="center">数据已全部加载</van-divider>
|
|
|
|
</view>
|
|
|
|
|
2024-09-27 17:37:49 +08:00
|
|
|
</view>
|
|
|
|
<!-- 提示框 -->
|
|
|
|
<van-dialog id="van-dialog" />
|
|
|
|
<!-- 提示框 -->
|
|
|
|
<van-notify id="van-notify" />
|