|
|
|
@ -33,10 +33,8 @@ |
|
|
|
</wux-image> |
|
|
|
<view style="flex:1;margin-left:24rpx"> |
|
|
|
<view class="page-name">{{form.name}}</view> |
|
|
|
<view style="height:60rpx"> |
|
|
|
<view class="page-outline">{{form.outline}}</view> |
|
|
|
<view class="page-outline" style="margin-top: 8rpx">{{form.summary}}</view> |
|
|
|
</view> |
|
|
|
<view class="page-outline">{{form.outline}}</view> |
|
|
|
<view class="page-outline" style="margin-top: 4rpx">{{form.summary}}</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:60rpx;margin-top:12rpx"> |
|
|
|
@ -51,14 +49,26 @@ |
|
|
|
<view class="offer-label">购买数量</view> |
|
|
|
<view class="offer-val">{{form.number}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:60rpx"> |
|
|
|
<!-- <view class="flex flex-justify" style="height:60rpx"> |
|
|
|
<view class="offer-label">运费</view> |
|
|
|
<view class="offer-val">¥{{form.dividePrice}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:60rpx"> |
|
|
|
<view class="offer-label" style="color:#333333;font-size:28rpx">{{form.payType == 1 ? '预付金额' : '应付金额'}}</view> |
|
|
|
</view> --> |
|
|
|
<view class="flex flex-justify" style="height:60rpx" wx:if="{{form.payType == 1}}"> |
|
|
|
<view class="offer-label" style="color:#333333;font-size:28rpx">预付金额</view> |
|
|
|
<view class="offer-val" style="color:#008AFF;font-size:28rpx">¥{{form.preAmount}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:60rpx" wx:if="{{form.payType == 2}}"> |
|
|
|
<view class="offer-label" style="color:#333333;font-size:28rpx">应付金额</view> |
|
|
|
<view class="offer-val" style="color:#008AFF;font-size:28rpx">¥{{form.totalPrice}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:60rpx" wx:if="{{form.payType == 3 || form.payType == 4}}"> |
|
|
|
<view class="offer-label" style="color:#333333;font-size:28rpx">月结金额</view> |
|
|
|
<view class="offer-val" style="color:#008AFF;font-size:28rpx">¥{{form.monthAmount}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:60rpx" wx:if="{{form.payType == 4}}"> |
|
|
|
<view class="offer-label" style="color:#333333;font-size:28rpx">现结金额</view> |
|
|
|
<view class="offer-val" style="color:#008AFF;font-size:28rpx">¥{{form.totalPrice}}</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="margin-top header-box" style="padding:32rpx"> |
|
|
|
@ -66,17 +76,27 @@ |
|
|
|
<text class="cuIcon-titles text-blue"></text> |
|
|
|
<view style="color:black;font-size:32rpx">付款方式</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:80rpx" data-index="1" bindtap="checkMode"> |
|
|
|
<view class="flex flex-justify" style="height:80rpx" data-index="1" bindtap="checkMode" wx:if="{{form.sellMode == 1}}"> |
|
|
|
<view class="flex align-end"> |
|
|
|
<text style="font-size:28rpx">预付定金</text> |
|
|
|
<text class="offer-hint" style="margin-left:10rpx">预付款10%,余款货到付款</text> |
|
|
|
</view> |
|
|
|
<text class="cuIcon-{{form.payType==1?'roundcheckfill':'roundcheck'}} text-{{form.payType==1?'blue':'grey'}}" style="font-size:36rpx"></text> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:80rpx" data-index="2" bindtap="checkMode"> |
|
|
|
<view class="flex flex-justify" style="height:80rpx" data-index="2" bindtap="checkMode" wx:if="{{form.sellMode == 1}}"> |
|
|
|
<view style="font-size:28rpx">全额支付</view> |
|
|
|
<text class="cuIcon-{{form.payType==2?'roundcheckfill':'roundcheck'}} text-{{form.payType==2?'blue':'grey'}}" style="font-size:36rpx"></text> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:80rpx" data-index="3" bindtap="checkMode" wx:if="{{form.sellMode == 2}}"> |
|
|
|
<view class="flex align-end"> |
|
|
|
<text style="font-size:28rpx">月结付款</text> |
|
|
|
</view> |
|
|
|
<text class="cuIcon-{{form.payType==3?'roundcheckfill':'roundcheck'}} text-{{form.payType==3?'blue':'grey'}}" style="font-size:36rpx"></text> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="height:80rpx" data-index="4" bindtap="checkMode" wx:if="{{form.sellMode == 2}}"> |
|
|
|
<view style="font-size:28rpx">现结付款</view> |
|
|
|
<text class="cuIcon-{{form.payType==4?'roundcheckfill':'roundcheck'}} text-{{form.payType==4?'blue':'grey'}}" style="font-size:36rpx"></text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
</view> |
|
|
|
@ -90,8 +110,10 @@ |
|
|
|
</button> |
|
|
|
<view class="flex align-end"> |
|
|
|
<!-- <view class="text-gray" style="font-size:12px">共{{form.number}}{{form.unit}}</view> --> |
|
|
|
<view class="text-black" style="font-size:32rpx;margin-left:24rpx">合计:</view> |
|
|
|
<view class="text-blue" style="font-size:32rpx">¥{{form.totalPrice}}</view> |
|
|
|
<view class="text-black" style="font-size:32rpx;margin-left:24rpx">合计:¥</view> |
|
|
|
<view class="text-blue" style="font-size:32rpx" wx:if="{{form.payType == 1}}">{{form.preAmount}}</view> |
|
|
|
<view class="text-blue" style="font-size:32rpx" wx:elif="{{form.payType == 2 || form.payType == 4}}">{{form.totalPrice}}</view> |
|
|
|
<view class="text-blue" style="font-size:32rpx" wx:elif="{{form.payType == 3}}">{{form.monthAmount}}</view> |
|
|
|
<button class="cu-btn offer-btn" bindtap="offerProject">立即购买</button> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|