|
@@ -0,0 +1,100 @@
|
|
|
+<view class="head">
|
|
|
+ <view class="title">
|
|
|
+ {{detail.billno}}_{{detail.type==0?'支出':'收入'}}凭证明细
|
|
|
+ </view>
|
|
|
+ <view class="amount">金额:<text>{{detail.amount}}</text></view>
|
|
|
+ <!-- <view class="date">查询日期:<text class="value">{{detail.begindate||'开始日期'}}<text style="padding: 0 10rpx;">至</text>{{detail.enddate||'结束日期'}}</text></view> -->
|
|
|
+</view>
|
|
|
+<view class="search">
|
|
|
+ <view class="label">
|
|
|
+ 凭证明细
|
|
|
+ </view>
|
|
|
+ <view class="box">
|
|
|
+ <van-search custom-class='custom-class' value="{{ content.where.condition }}" background='#F4F5F7' shape="round" placeholder="请输入搜索关键词" bind:search='startSearch' bind:clear='startSearch' />
|
|
|
+ </view>
|
|
|
+</view>
|
|
|
+
|
|
|
+<Yl_ListBox id='ListBox' bind:getlist='getList'>
|
|
|
+ <view class="item" wx:for="{{list}}" wx:key="sa_hrcashbilldetailid">
|
|
|
+ <view class="row">
|
|
|
+ 订单号:{{item.sonum || '--'}}
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ 客户名称:{{item.enterprisename || '--'}}
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ 项目名称:{{item.projectname || '--'}}
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ 产品名称:{{item.itemname || '--'}}
|
|
|
+ </view>
|
|
|
+ <view class="row two-lines">
|
|
|
+ <view class="left">
|
|
|
+ 行号:{{item.rowindex}}
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ 产品编码:{{item.itemno}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="row two-lines">
|
|
|
+ <view class="left">
|
|
|
+ 型号:{{item.model}}
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ 规格:{{item.spec}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="row two-lines">
|
|
|
+ <view class="left">
|
|
|
+ 订单单价:{{item.showOrderprice}}
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ 提成单价:{{item.showPrice}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="row two-lines">
|
|
|
+ <view class="left">
|
|
|
+ 提成比例:{{item.rate * 100}}%
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ 分配比例:{{item.allocation_rate * 100}}%
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="row two-lines">
|
|
|
+ <view class="left">
|
|
|
+ 提成金额:{{detail.type==0 ? item.showCashbilldetailamount : item.showAmount}}
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ 预计提成金额:{{item.showOrderExpectedamount}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="row two-lines">
|
|
|
+ <view class="left">
|
|
|
+ 已提成金额:{{item.showRewardamount }}
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ 已发放金额:{{item.showPayapplyamount}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view wx:if="{{detail.type==0}}" class="row two-lines">
|
|
|
+ <view class="left">
|
|
|
+ 未发放金额:{{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>
|