12345678910111213141516171819202122232425262728293031323334353637383940 |
- <view wx:if="{{priceflag}}" bindtap="closetap" class="pricelayerbox">
- <view catchtap="dothis" class="calcpricebox">
- <view class="relative">
- <image class="pricetbg" src="{{imgUrl}}xcx/aaa/pricetbg.png"></image>
- <image bindtap="closetap" class="p_close" src="{{imgUrl}}xcx/aaa/p_close.png"></image>
- <view class="pricetext ">免费获取装修报价</view>
- </view>
- <view class="calcpricenum relative">
- <text class="pull-left textbox" wx:for="{{arr}}">0</text>
- <text wx:for="{{pricenum}}" class="pull-left textbox nowtextbox">{{item}}</text>
- <view class="pull-left rightextbox">元</view>
- </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>
- <view class="houseareabox phonebox relative">
- <image src="/img/p_phone.png"></image>
- <input placeholder="请输入手机号" maxlength='11' value="{{phone}}" bindinput="setphonetap" placeholder-style="color:#999;font-size:28rpx;" type="number"/>
- </view>
- <button bindtap="subfun" class="calcpricebtn fontfpr ">立即估算报价</button>
- </view>
- </view>
|