mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 14:19:38 +08:00
44 lines
2.4 KiB
Plaintext
44 lines
2.4 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}}"/>
|
|
</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="{{6}}" wx:for-index="idx" wx:key="*this">
|
|
<view class="content">
|
|
<view class="title">10人间 | B2A | 12F</view>
|
|
<view class="articleView">
|
|
<view class="article" wx:for="{{3}}" wx:key="*this">#电视</view>
|
|
</view>
|
|
<view class="propOpen"></view>
|
|
<view class="priceView">
|
|
<view class="price">¥ 200.00/</view>
|
|
<view class="unit">半小时 起</view>
|
|
</view>
|
|
</view>
|
|
<view class="imgView">
|
|
<view class="title">会议室</view>
|
|
<image class="img" src="{{IMG_NAME + '/profile/static/index/banner/1.jpg'}}" mode="aspectFill" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |