12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <block wx:if="{{garden_id}}">
- <view class="top">
- <view class="desc">
- <block wx:if="{{plate_no}}">
- <view class="car">
- <view class="car">
- <image src="{{brand_pic}}" style="height: 50px;width: 50px;" />
- <view class="plate_header">
- <text bindtap="goMyCar">车牌:{{plate_no}}</text>
- <text>{{desc}}</text>
- </view>
- </view>
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/qiehuan.png" style="height: 32px;width: 32px;" bindtap="goMyCar" />
- </view>
- </block>
- <block wx:else="">
- <view class="plate_header nocar">
- <text bindtap="goMyCar">名下暂无车辆</text>
- </view>
- </block>
- </view>
- <view class="months">
- <view class="month">
- <view>充值月数</view>
- <view class="month_item">
- <image class="timePic" src="http://ro7r875ut.hn-bkt.clouddn.com/time.png" />
- <input class="inputText" bindblur="getMonth"
- placeholder="请输入充值月数" maxlength="2" type="number" />
- </view>
- </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">
- {{charge_desc}}
- </view>
- <view class="payBtn">
- <button bindtap="car_pay" type="primary" style="background-color: #15D234;">去支付</button>
- </view>
- </block>
- <block wx:else="">
- <nopermission />
- </block>
|