|
@@ -28,73 +28,58 @@
|
|
|
<view class="row">
|
|
|
产品名称:{{item.itemname || '--'}}
|
|
|
</view>
|
|
|
- <view class="row two-lines">
|
|
|
- <view class="left">
|
|
|
+ <view class="two-box">
|
|
|
+ <view class="col">
|
|
|
行号:{{item.rowindex}}
|
|
|
</view>
|
|
|
- <view>
|
|
|
+ <view class="col">
|
|
|
产品编码:{{item.itemno}}
|
|
|
</view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view class="row two-lines">
|
|
|
- <view class="left">
|
|
|
+ <view class="col">
|
|
|
型号:{{item.model}}
|
|
|
</view>
|
|
|
- <view>
|
|
|
+ <view class="col">
|
|
|
规格:{{item.spec}}
|
|
|
</view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view class="row two-lines">
|
|
|
- <view class="left">
|
|
|
+ <view class="col">
|
|
|
订单单价:{{item.showOrderprice}}
|
|
|
</view>
|
|
|
- <view>
|
|
|
+ <view class="col">
|
|
|
+ 订单金额:{{item.showOrderamount}}
|
|
|
+ </view>
|
|
|
+ <view class="col">
|
|
|
提成单价:{{item.showPrice}}
|
|
|
</view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view class="row two-lines">
|
|
|
- <view class="left">
|
|
|
+ <view class="col">
|
|
|
提成比例:{{item.rate * 100}}%
|
|
|
</view>
|
|
|
- <view>
|
|
|
+ <view class="col">
|
|
|
分配比例:{{item.allocation_rate * 100}}%
|
|
|
</view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view class="row two-lines">
|
|
|
- <view class="left">
|
|
|
+ <view class="col">
|
|
|
提成金额:{{detail.type==0 ? item.showCashbilldetailamount : item.showAmount}}
|
|
|
</view>
|
|
|
- <view>
|
|
|
+ <view class="col">
|
|
|
预计提成金额:{{item.showOrderExpectedamount}}
|
|
|
</view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view class="row two-lines">
|
|
|
- <view class="left">
|
|
|
+ <view class="col">
|
|
|
已提成金额:{{item.showRewardamount }}
|
|
|
</view>
|
|
|
- <view>
|
|
|
+ <view class="col">
|
|
|
已发放金额:{{item.showPayapplyamount}}
|
|
|
</view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view wx:if="{{detail.type==0}}" class="row two-lines">
|
|
|
- <view class="left">
|
|
|
+ <block wx:if="{{detail.type==0}}">
|
|
|
+ <view class="col">
|
|
|
+ 未发放金额:{{item.showUnpayapplyamount}}
|
|
|
+ </view>
|
|
|
+ <view class="col">
|
|
|
+ 本次调整金额:<text class="price">{{item.showAmount}}</text>
|
|
|
+ </view>
|
|
|
+ </block>
|
|
|
+ <view wx:else class="col">
|
|
|
未发放金额:{{item.showUnpayapplyamount}}
|
|
|
</view>
|
|
|
- <view>
|
|
|
- 本次调整金额:<text class="price">{{item.showAmount}}</text>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view wx:else class="row">
|
|
|
- 未发放金额:{{item.showUnpayapplyamount}}
|
|
|
</view>
|
|
|
-
|
|
|
</view>
|
|
|
<Yl_Empty wx:if="{{list.length === 0}}" />
|
|
|
</Yl_ListBox>
|