|
|
|
@ -2,8 +2,8 @@ |
|
|
|
<wxs module="formate" src="../../formate.wxs"></wxs> |
|
|
|
<template name="agent-info"> |
|
|
|
<view class="flex flex-column bg-white" style="height:240rpx;align-items: center"> |
|
|
|
<view class="text-black text-sg" style="margin-top:36rpx">付款金额(元)</view> |
|
|
|
<view class="text-black text-sl text-bold" style="margin-top:16rpx">{{formate.formateAmount(2000, 2)}}</view> |
|
|
|
<view class="text-black text-sg" style="margin-top:36rpx">应付总金额(元)</view> |
|
|
|
<view class="text-black text-sl text-bold" style="margin-top:16rpx">{{formate.formateAmount(receivablePrice, 2)}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify bg-white" style="padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3"> |
|
|
|
<view class="flex flex-center"> |
|
|
|
@ -16,55 +16,55 @@ |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">结算方式</view> |
|
|
|
<view class="text-gray">固定金额</view> |
|
|
|
<view class="text-gray">{{settlementMethod == 0 ? '固定金额' : '年化率'}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">账期(天)</view> |
|
|
|
<view class="text-gray">8</view> |
|
|
|
<view class="text-gray">{{settlementPeriod}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">账期结算单价(元/吨)</view> |
|
|
|
<view class="text-gray">固定金额</view> |
|
|
|
<view class="text-black">{{settlementMethod == 0 ? '账期结算单价(元/吨)' : '账期年化率(%)'}}</view> |
|
|
|
<view class="text-gray">{{settlementInAccountPeriod}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">账期费用(元)</view> |
|
|
|
<view class="text-gray">固定金额</view> |
|
|
|
<view class="text-gray">{{accountPeriodReceivePrice}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">逾期结算单价(元/吨)</view> |
|
|
|
<view class="text-gray">固定金额</view> |
|
|
|
<view class="text-black">{{settlementMethod == 0 ? '逾期结算单价(元/吨)' : '逾期年化率(%)'}}</view> |
|
|
|
<view class="text-gray">{{overdueSettlement}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">逾期天数(天)</view> |
|
|
|
<view class="text-gray">8</view> |
|
|
|
<view class="text-gray">{{overdueDays}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">逾期金额(元)</view> |
|
|
|
<view class="text-gray">固定金额</view> |
|
|
|
<view class="text-gray">{{overduePrice}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">订单金额(元)</view> |
|
|
|
<view class="text-gray">固定金额</view> |
|
|
|
<view class="text-gray">{{formate.formateAmount(form.settleTotalAmount, 2)}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">应付总金额(元)</view> |
|
|
|
<view class="text-gray">固定金额</view> |
|
|
|
<view class="text-gray">{{receivablePrice}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<view style="height:16rpx"></view> |
|
|
|
|