property.wxml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <block wx:if="{{garden_id}}">
  2. <view class="top">
  3. <view class="desc">
  4. {{propertyInfo.desc}}
  5. </view>
  6. <view class="months">
  7. <view class="month">
  8. <block wx:for="{{propertyInfo.month_list}}" wx:key="index">
  9. <view class="month_item {{item.checked?'is_checked':''}}" bindtap="choiceMonth" data-index="{{index}}" data-package_id="{{item.package_id}}" data-months="{{item.months}}">{{item.months}}个月
  10. <text wx:if="{{item.give_months}}" class="give_month">送{{item.give_months}}个月</text>
  11. <text wx:if="{{item.give_text}}" class="give_month">{{item.give_text}}</text>
  12. </view>
  13. </block>
  14. </view>
  15. <view class="amount">
  16. <view class="amount_item">
  17. <text>缴费总额</text>
  18. <text style="color: #F40909;">¥{{should_pay_amount/100}}</text>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="tips">
  24. 计算公式:物业费=房屋面积*单价*购买月份+其他费用
  25. </view>
  26. <view class="tips">
  27. 注:单位(月)
  28. </view>
  29. <view class="payBtn">
  30. <button bindtap="pre_pay" type="primary" style="background-color: #15D234;">去支付</button>
  31. </view>
  32. </block>
  33. <block wx:else="">
  34. <nopermission />
  35. </block>