46 lines
2.5 KiB
Plaintext
Raw Normal View History

2024-03-01 15:07:02 +08:00
<view class="containerView public">
<!-- 筛选条件 -->
<view class="queryView">
<van-dropdown-menu active-color="#4e96f8">
2024-03-01 16:42:56 +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 }}">
2024-06-25 17:33:04 +08:00
<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}}" />
2024-03-01 16:42:56 +08:00
</van-cell>
<view style="padding:30rpx;">
2024-03-01 17:41:59 +08:00
<van-button type="danger" block round bind:click="itemDictConfirm" color="#3c8bf2">收起</van-button>
2024-03-01 16:42:56 +08:00
</view>
</van-dropdown-item>
<!-- 字典-形式 -->
<van-dropdown-item value="{{ queryParam.shapeDict.value }}" options="{{ queryParam.shapeDict.list }}" bind:change="dictChange" data-type="shapeDict" />
2024-03-01 15:07:02 +08:00
</van-dropdown-menu>
</view>
2024-02-26 09:06:34 +08:00
<!-- 会议室列表 -->
<view class="meetingRoomView">
2024-06-25 17:33:04 +08:00
<view class="meetingRoomItem" bind:tap="jumpMeetingRoom" wx:for="{{roomDataList}}" wx:for-item="room" wx:key="*this" data-id="{{room.id}}">
2024-02-26 15:34:59 +08:00
<view class="content">
2024-03-02 15:17:40 +08:00
<view class="title">{{room.capacityNum}}人间 | {{room.roomName}} | {{room.buildingName}}</view>
2024-02-26 17:17:27 +08:00
<view class="articleView">
2024-06-25 17:33:04 +08:00
<view class="article" wx:for="{{room.roomItemList}}" wx:for-item="roomItem" wx:key="*this">#{{roomItem.name}}</view>
2024-02-26 17:17:27 +08:00
</view>
<view class="propOpen"></view>
<view class="priceView">
2024-06-25 17:33:04 +08:00
<view class="unit">{{room.shape}}</view>
2024-02-26 17:17:27 +08:00
</view>
</view>
<view class="imgView">
2024-05-06 17:10:31 +08:00
<view class="title">{{room.meetingName}}</view>
<image class="img" src="{{IMG_NAME + room.indoorPicUrlFirst}}" mode="aspectFill" />
2024-02-26 15:34:59 +08:00
</view>
2024-02-26 09:06:34 +08:00
</view>
</view>
2024-05-17 09:15:54 +08:00
<van-notify id="van-notify" />
2024-02-26 09:06:34 +08:00
</view>