mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-22 06:39:37 +08:00
46 lines
2.5 KiB
Plaintext
46 lines
2.5 KiB
Plaintext
<view class="containerView public">
|
|
|
|
<!-- 筛选条件 -->
|
|
<view class="queryView">
|
|
<van-dropdown-menu active-color="#4e96f8">
|
|
<!-- 字典-会议室 -->
|
|
<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">
|
|
<view class="meetingRoomItem" bind:tap="jumpMeetingRoom" wx:for="{{roomDataList}}" wx:for-item="room" wx:key="*this" data-id="{{room.id}}">
|
|
<view class="content">
|
|
<view class="title">{{room.capacityNum}}人间 | {{room.roomName}} | {{room.buildingName}}</view>
|
|
<view class="articleView">
|
|
<view class="article" wx:for="{{room.roomItemList}}" wx:for-item="roomItem" wx:key="*this">#{{roomItem.name}}</view>
|
|
</view>
|
|
<view class="propOpen"></view>
|
|
<view class="priceView">
|
|
<view class="unit">{{room.shape}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="imgView">
|
|
<view class="title">{{room.meetingName}}</view>
|
|
<image class="img" src="{{IMG_NAME + room.indoorPicUrlFirst}}" mode="aspectFill" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<van-notify id="van-notify" />
|
|
|
|
</view> |