2023-04-17 16:14:18 +08:00

28 lines
1.1 KiB
Plaintext

<view>
<view class="texttitle" bindtap="showAlert" data-show="1">
<slot></slot>
</view>
<view class="alert" hidden="{{ !show }}" catchtouchmove="catchmove">
<view class="block-back" bindtap="showAlert" data-show="0"></view>
<view class="inner">
<view class="title">
<view class="l">{{ title }}</view>
<view class="close-box" catchtap='close' data-show='0'>
<image src="/img/close-f.png"></image>
</view>
</view>
<view class="range">
<input placeholder-class="placeholder" type="number" bindinput="input" data-input="rent_min" value="{{ rent_min }}" placeholder="最低价"></input>
<view class="space">~</view>
<input placeholder-class="placeholder" type="number" bindinput="input" data-input="rent_max" value="{{ rent_max }}" placeholder="最高价"></input>
</view>
<view class="btn-box">
<view class="btn cle" bindtap="clear" data-show="0">{{rent_min || rent_max ? '清空' : '取消'}}</view>
<view class="btn" bindtap="submit">确定</view>
</view>
</view>
</view>
</view>