54 lines
2.6 KiB
Plaintext
54 lines
2.6 KiB
Plaintext
<view>
|
|
<view bindtap="showMoreCondition" data-show="1" class="text"><slot></slot></view>
|
|
<view class='more-condition' hidden="{{ !show }}" catchtouchmove="catchmove">
|
|
<view class='black-box' catchtap='showMoreCondition' data-show='0'></view>
|
|
<view class='inner-box'>
|
|
<view class="more-title">
|
|
更多筛选
|
|
<view class="close-box" catchtap='showMoreCondition' data-show='0'>
|
|
<image src="/img/close-f.png"></image>
|
|
</view>
|
|
</view>
|
|
<view class="ul">
|
|
|
|
<!-- <view class='item'>
|
|
<view class='title'>租期</view>
|
|
<view class="form">
|
|
<input placeholder="请填写数字" placeholder-class="placeholder" data-letter="rentalduration" type="number" bindinput="input" value="{{ rentalduration.value }}"></input>月 ,(不填为租期不限)
|
|
</view>
|
|
</view> -->
|
|
<view class='item'>
|
|
<view class='title'>租期</view>
|
|
<view class='box'>
|
|
<view class="{{ info.leaseterm.value == index?'i active' :'i' }}" bindtap='selectItem' data-box="leaseterm" data-value="{{ index }}" wx:key="index" wx:for="{{ info.leaseterm.list }}">{{ item }}</view>
|
|
</view>
|
|
</view>
|
|
<view class='item'>
|
|
<view class='title'>性别</view>
|
|
<view class='box'>
|
|
<view class="{{ info.gender.value == index?'i active' :'i' }}" bindtap='selectItem' data-box="gender" data-value="{{ index }}" wx:key="index" wx:for="{{ info.gender.list }}">{{ item }}</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- <view class='item' wx:if="{{ !isrestofWorld }}">
|
|
<view class='title'>附近学校</view>
|
|
<view class='box'>
|
|
<view class="{{info['school'].value == 0?'i active' :'i'}}" bindtap='selectItem' data-box="school" data-value="0" >不限</view>
|
|
<view class="{{ item.nohouse ? 'i nohouse' :( info['school'].value == item.value?'i active' :'i' )}}" bindtap='selectItem' data-box="school" data-value="{{ item.value }}" wx:for="{{ info['school'].list }}" wx:key="index" >{{ item.name }}</view>
|
|
</view>
|
|
</view> -->
|
|
|
|
<view class='item'>
|
|
<view class='title'>发布时间</view>
|
|
<view class='box'>
|
|
<view class="{{ info.publish.value == index?'i active' :'i' }}" bindtap='selectItem' data-box="publish" data-value="{{ index }}" wx:key="index" wx:for="{{ info.publish.list }}">{{ item }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='submit'> <view class='btn' bindtap='submit'>确定</view></view>
|
|
|
|
</view>
|
|
</view>
|
|
</view> |