You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
735 B
16 lines
735 B
<view class="page">
|
|
<view class="allPage" bindtap="tapPages">
|
|
<view class="selectBox" catchtap='showPicker'>
|
|
<view class="selectTypeHead" style="justify-content:{{selectBox.length%2==0 ? 'space-around':'space-between' }}">
|
|
<view class="roomType " wx:for="{{selectBox}}" wx:key="index" data-ind="{{index}}" catchtap="bindLevelChange">
|
|
<text>{{item.roomType}}</text>
|
|
<i class="down-arrow"></i>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="selectItems" wx:if="{{showItems}}">
|
|
<view class="items" wx:for='{{array}}' data-type="{{item}}" catchtap="selectItem">{{item}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view> |