calcprice.wxml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <view wx:if="{{priceflag}}" bindtap="closetap" class="pricelayerbox">
  2. <view catchtap="dothis" class="calcpricebox">
  3. <view class="relative">
  4. <image class="pricetbg" src="{{imgUrl}}xcx/aaa/pricetbg.png"></image>
  5. <image bindtap="closetap" class="p_close" src="{{imgUrl}}xcx/aaa/p_close.png"></image>
  6. <view class="pricetext ">免费获取装修报价</view>
  7. </view>
  8. <view class="calcpricenum relative">
  9. <text class="pull-left textbox" wx:for="{{arr}}">0</text>
  10. <text wx:for="{{pricenum}}" class="pull-left textbox nowtextbox">{{item}}</text>
  11. <view class="pull-left rightextbox">元</view>
  12. </view>
  13. <view class="houseareabox relative">
  14. <image src="/img/p_house.png"></image>
  15. <input placeholder="请输入房屋面积" value="{{area}}" bindinput="setareatap" maxlength="5" placeholder-style="color:#999;font-size:28rpx;" type="number"/>
  16. <text>m²</text>
  17. </view>
  18. <view class="housemsgbox ">
  19. <picker class="homebox" range-key="name" bindchange="bindPickerChange" value="{{hidx}}" range="{{homearr}}">
  20. <view class="picker">{{homearr[hidx].name}}</view>
  21. <image src="/img/blackrangle.png"></image>
  22. </picker>
  23. <picker class="homebox" range-key="name" bindchange="bindliveChange" value="{{lidx}}" range="{{liveroom}}">
  24. <view class="picker">{{liveroom[lidx].name}}</view>
  25. <image src="/img/blackrangle.png"></image>
  26. </picker>
  27. <picker class="homebox" range-key="name" bindchange="bindtolietChange" value="{{tidx}}" range="{{tolitarr}}">
  28. <view class="picker">{{tolitarr[tidx].name}}</view>
  29. <image src="/img/blackrangle.png"></image>
  30. </picker>
  31. </view>
  32. <view class="houseareabox phonebox relative">
  33. <image src="/img/p_phone.png"></image>
  34. <input placeholder="请输入手机号" maxlength='11' value="{{phone}}" bindinput="setphonetap" placeholder-style="color:#999;font-size:28rpx;" type="number"/>
  35. </view>
  36. <button bindtap="subfun" class="calcpricebtn fontfpr ">立即估算报价</button>
  37. </view>
  38. </view>