Browse Source

no message

feature/v2.1
lizhongkang@qniao.cn 4 years ago
parent
commit
2e18714ae9
1 changed files with 6 additions and 6 deletions
  1. 12
      pages/process/template/index.wxml

12
pages/process/template/index.wxml

@ -79,18 +79,18 @@
<view class="text-gray">{{formate.formateAmount(form.paymentOrderInfo.totalPrice, 2)}}</view>
</view>
</van-cell>
<view style="height:16rpx" wx:if="{{form.agencyPaymentOrderLog && form.agencyPaymentOrderLog.length}}"></view>
<view class="flex flex-justify bg-white" style="padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3" wx:if="{{form.agencyPaymentOrderLog && form.agencyPaymentOrderLog.length}}">
<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-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.agencyPaymentOrderLog" wx:key="index">
<view slot="title" class="flex flex-justify">
<view class="text-black">收款日期:{{item.paymentDate}}</view>
<view class="text-black">收款金额:{{formate.formateAmount(item.paymentPrice, 2)}}</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="height:16rpx"></view>

Loading…
Cancel
Save