2024-03-01 15:07:02 +08:00
|
|
|
<view class="containerView public">
|
|
|
|
|
2024-09-13 17:09:25 +08:00
|
|
|
<!-- 筛选条件 -->
|
|
|
|
<view class="queryView">
|
|
|
|
<van-dropdown-menu active-color="#4e96f8">
|
2024-09-16 18:22:00 +08:00
|
|
|
<!-- 时间范围 -->
|
|
|
|
<van-dropdown-item value="{{ queryParam.timeRangeDict.value }}" options="{{ queryParam.timeRangeDict.list }}" bind:change="dictChange" data-type="timeRangeDict" />
|
2024-09-13 17:09:25 +08:00
|
|
|
<!-- 字典-会议室 -->
|
|
|
|
<van-dropdown-item value="{{ queryParam.meetingTypeDict.value }}" options="{{ queryParam.meetingTypeDict.list }}" bind:change="dictChange" data-type="meetingTypeDict" />
|
|
|
|
<!-- 字典-人数 -->
|
|
|
|
<van-dropdown-item value="{{ queryParam.personDict.value }}" options="{{ queryParam.personDict.list }}" bind:change="dictChange" data-type="personDict" />
|
|
|
|
<!-- 字典-设备 -->
|
|
|
|
<van-dropdown-item id="itemSelect" title="{{ queryParam.itemDict.title }}">
|
|
|
|
<van-cell title="{{ item.text }}" wx:for="{{queryParam.itemDict.list}}" wx:key="*this">
|
|
|
|
<van-switch slot="right-icon" size="24px" style="height: 26px" checked="{{ item.select }}" active-color="#3c8bf2" bind:change="dictSwitchChange" data-name="{{item.text}}" data-id="{{item.value}}" />
|
|
|
|
</van-cell>
|
|
|
|
<view style="padding:30rpx;">
|
|
|
|
<van-button type="danger" block round bind:click="itemDictConfirm" color="#3c8bf2">收起</van-button>
|
|
|
|
</view>
|
|
|
|
</van-dropdown-item>
|
|
|
|
<!-- 字典-形式 -->
|
|
|
|
<van-dropdown-item value="{{ queryParam.shapeDict.value }}" options="{{ queryParam.shapeDict.list }}" bind:change="dictChange" data-type="shapeDict" />
|
|
|
|
</van-dropdown-menu>
|
|
|
|
</view>
|
|
|
|
<view class="meetingRoomView">
|
2024-09-14 17:03:36 +08:00
|
|
|
<view wx:for="{{roomDataList}}">
|
2024-09-13 17:09:25 +08:00
|
|
|
<view class="roomType">{{item.name}}</view>
|
|
|
|
<view class="meetingRoomItem" bind:tap="jumpMeetingRoom" wx:for="{{item.list}}" wx:for-item="room" wx:key="*this" data-id="{{room.id}}">
|
|
|
|
<view class="content">
|
|
|
|
<view class="title">{{room.roomName}}</view>
|
|
|
|
<view class="priceView">
|
|
|
|
<view class="unit">{{room.capacityNum}}人 {{room.shape}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<!-- <view class="imgView">
|
2024-05-06 17:10:31 +08:00
|
|
|
<view class="title">{{room.meetingName}}</view>
|
2024-04-08 16:37:12 +08:00
|
|
|
<image class="img" src="{{IMG_NAME + room.indoorPicUrlFirst}}" mode="aspectFill" />
|
2024-09-13 17:09:25 +08:00
|
|
|
</view> -->
|
|
|
|
</view>
|
|
|
|
<view style="clear: both;"></view>
|
2024-02-26 09:06:34 +08:00
|
|
|
</view>
|
2024-09-13 17:09:25 +08:00
|
|
|
</view>
|
|
|
|
<van-notify id="van-notify" />
|
2024-05-17 09:15:54 +08:00
|
|
|
|
2024-02-26 09:06:34 +08:00
|
|
|
</view>
|