123456789101112131415161718192021222324252627282930313233343536 |
- <block wx:if="{{garden_id}}">
- <view class="top">
- <view class="desc">
- {{propertyInfo.desc}}
- </view>
- <view class="months">
- <view class="month">
- <block wx:for="{{propertyInfo.month_list}}" wx:key="index">
- <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}}个月
- <text wx:if="{{item.give_months}}" class="give_month">送{{item.give_months}}个月</text>
- <text wx:if="{{item.give_text}}" class="give_month">{{item.give_text}}</text>
- </view>
- </block>
- </view>
- <view class="amount">
- <view class="amount_item">
- <text>缴费总额</text>
- <text style="color: #F40909;">¥{{should_pay_amount/100}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="tips">
- 计算公式:物业费=房屋面积*单价*购买月份+其他费用
- </view>
- <view class="tips">
- 注:单位(月)
- </view>
- <view class="payBtn">
- <button bindtap="pre_pay" type="primary" style="background-color: #15D234;">去支付</button>
- </view>
- </block>
- <block wx:else="">
- <nopermission />
- </block>
|