|
<!--pages/paymentInterface/paymentInterface.wxml-->
|
|
<view class="paycontent">
|
|
<view class="m-bottom">
|
|
<!-- <view class="paycontentTop font-size-12">
|
|
<view>已交费:4月</view>
|
|
<view>房屋到期:{{leases.contractTime}}</view>
|
|
</view> -->
|
|
<!-- <view class="pa-2 box-shadow-eee">
|
|
<view class="font-size-12 color-999 mb-1">总交费(¥)</view>
|
|
<view class="font-size-24">{{leases.monthRent}} ¥</view>
|
|
</view> -->
|
|
<view class="mt-2 mb-2 box-shadow-eee">
|
|
<!-- <view class="title ma-2">付款人信息</view> -->
|
|
<van-cell-group>
|
|
<van-cell title="账单时间" value="{{leases.dueDate}}" />
|
|
<van-cell title="地址" value="{{leases.address}}" />
|
|
<van-cell title="账单类型" value="房租账单" />
|
|
<van-cell title="合同期限" value="{{leases.timePeriod}}" />
|
|
<van-cell title="支付类型" value="微信支付" />
|
|
<van-cell title="姓名" value="{{leases.name}}" />
|
|
<van-cell title="手机号" value="{{leases.phone}}" />
|
|
<van-cell title="房屋租金" value="{{leases.monthRent}}" />
|
|
</van-cell-group>
|
|
</view>
|
|
<!-- <view class="mt-2 mb-2 box-shadow-eee">
|
|
<view class="title ma-2">支付方式</view>
|
|
<van-radio-group value="{{ radio }}" bind:change="onChange">
|
|
<van-cell-group>
|
|
<van-cell title="微信" clickable data-name="0" bind:click="onClick">
|
|
<van-radio slot="right-icon" name="0" />
|
|
</van-cell>
|
|
<van-cell title="支付宝" clickable data-name="1" wx:if="{{type == 1}}" bind:click="onClick">
|
|
<van-radio slot="right-icon" name="1" />
|
|
</van-cell>
|
|
<van-cell title="现金" clickable data-name="2" wx:if="{{type == 1}}" bind:click="onClick">
|
|
<van-radio slot="right-icon" name="2"/>
|
|
</van-cell>
|
|
<van-cell title="银联支付" clickable data-name="3" wx:if="{{type == 1}}" bind:click="onClick">
|
|
<van-radio slot="right-icon" name="3" />
|
|
</van-cell>
|
|
</van-cell-group>
|
|
</van-radio-group>
|
|
</view> -->
|
|
</view>
|
|
<view class="bottomContent">
|
|
<view class="textCenter">{{leases.monthRent}} ¥ / 月</view>
|
|
<view><van-button type="primary" block bind:click="payMentMethods">确认付款</van-button></view>
|
|
</view>
|
|
</view>
|