WechatOwnerService/pages/payParkingFee/payParkingFee.wxml

29 lines
1.2 KiB
Plaintext

<view>
<view class="ppf_c">
<view class="block__title">车位信息</view>
<view class="ppf_item">
<van-cell-group>
<van-cell title="小区" value="{{communityName}}" />
<van-cell title="车位编号" value="{{num}}号车位" />
<van-cell title="车位类型" value="{{typeCdName}}" />
<van-cell title="车牌号" value="{{carNum}}" />
</van-cell-group>
</view>
<view class="block__title">费用信息</view>
<view class="ppf_item">
<van-cell-group>
<van-cell title="费用编号" value="{{feeId}}" />
<van-cell title="金额" value="{{additionalAmount}}元/月"/>
<van-cell title="周期" value="{{feeMonthName}}" bind:click="chooseMonth" is-link/>
<van-cell title="到期时间" value="{{endTime}}" />
</van-cell-group>
</view>
</view>
<van-submit-bar price="{{ receivableAmount }}" button-text="提交订单" bind:submit="onPayFee" />
<van-popup show="{{ showFeeMonth }}" position="bottom" custom-style="height: 40%;">
<van-picker show-toolbar title="" columns="{{ feeMonthList }}" bind:change="onFeeMonthChange" bind:cancel="onFeeMonthCancel" bind:confirm="onFeeMonthConfirm" />
</van-popup>
</view>