12345678910111213141516171819202122232425262728293031323334 |
- <view wx:if="{{priceflag}}" bindtap="closetap" class="pricelayerbox">
- <view catchtap="dothis" class="calcpricebox">
- <view class="relative">
- <image class="pricetbg" src="{{imgUrl}}xcx/aindex/freepricecover.png"></image>
- <image bindtap="closetap" class="p_close" src="{{imgUrl}}xcx/aaa/p_close.png"></image>
- </view>
- <view class="houseareabox phonebox relative">
- <image src="/img/xq_icon.png"></image>
- <input placeholder="请输入小区名称" value="{{phone}}" bindinput="setcommunitytap" placeholder-style="color:#999;font-size:28rpx;"/>
- </view>
- <view class="houseareabox relative">
- <image src="/img/p_house.png"></image>
- <input placeholder="请输入房屋面积" value="{{area}}" bindinput="setareatap" maxlength="5" placeholder-style="color:#999;font-size:28rpx;" type="number"/>
- <text>m²</text>
- </view>
- <view class="housemsgbox ">
- <picker class="homebox" range-key="name" bindchange="bindPickerChange" value="{{hidx}}" range="{{homearr}}">
- <view class="picker">{{homearr[hidx].name}}</view>
- <image src="/img/blackrangle.png"></image>
- </picker>
- <picker class="homebox" range-key="name" bindchange="bindliveChange" value="{{lidx}}" range="{{liveroom}}">
- <view class="picker">{{liveroom[lidx].name}}</view>
- <image src="/img/blackrangle.png"></image>
- </picker>
- <picker class="homebox" range-key="name" bindchange="bindtolietChange" value="{{tidx}}" range="{{tolitarr}}">
- <view class="picker">{{tolitarr[tidx].name}}</view>
- <image src="/img/blackrangle.png"></image>
- </picker>
- </view>
- <button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumberTap" class="calcpricebtn fontfpr ">立即计算</button>
- </view>
- </view>
|