Browse Source

还款记录

feature/v2.1
xpz2018 4 years ago
parent
commit
41101ebac8
1 changed files with 9 additions and 7 deletions
  1. 16
      pages/process/template/index.wxml

16
pages/process/template/index.wxml

@ -80,19 +80,21 @@
</view>
</van-cell>
<view style="height:16rpx" wx:if="{{form.paymentOrderLog && form.paymentOrderLog.length}}"></view>
<view class="flex flex-justify bg-white" style="padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3" wx:if="{{form.paymentOrderLog && form.paymentOrderLog.length}}">
<view class="flex flex-justify bg-white" style="padding: 24rpx 32rpx" wx:if="{{form.paymentOrderLog && form.paymentOrderLog.length}}">
<view class="flex flex-center">
<view style="height:30rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);">
</view>
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">还款记录</view>
</view>
</view>
<van-cell wx:for="{{form.paymentOrderLog}}" wx:key="index" wx:if="{{form.paymentOrderLog && form.paymentOrderLog.length}}">
<view slot="title" class="flex flex-justify" style="padding-left:0rpx">
<view class="text-black">还款日期:<text class="text-gray">{{item.paymentDate}}</text></view>
<view class="text-black">还款金额(元):<text class="text-gray">{{formate.formateAmount(item.paymentPrice, 2)}}</text></view>
</view>
</van-cell>
<view style="border-top:1rpx solid #f3f3f3" wx:if="{{form.paymentOrderLog && form.paymentOrderLog.length}}">
<van-cell wx:for="{{form.paymentOrderLog}}" wx:key="index">
<view slot="title" class="flex flex-justify" style="padding-left:0rpx">
<view class="text-black">还款日期:<text class="text-gray">{{item.paymentDate}}</text></view>
<view class="text-black">还款金额(元):<text class="text-gray">{{formate.formateAmount(item.paymentPrice, 2)}}</text></view>
</view>
</van-cell>
</view>
<view style="height:16rpx"></view>
<view class="flex flex-center bg-white" style="justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
<view style="height:30rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);">

Loading…
Cancel
Save