1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <view>
- <view class="section">
- <image class="groupDay" src="../../images/groupDay.png"></image>
- <view class="picker">
- <picker bindchange="bindDateChange" fields="month" mode="date" value="{{date}}">
- <view class="choose-day">
- <text>{{chooseDate}}</text>
- <image src="../../images/down-arrow.png"></image>
- </view>
- </picker>
- </view>
- <view class="income">
- <text>预计佣金:¥{{permoney}}</text>
- </view>
- </view>
- <view class="distributionList">
- <view class="nav">
- <view bindtap="switchNav" class="orderList_item {{currentTab==item.status?'on':''}}" data-current="{{item.status}}" wx:for="{{navList}}" wx:key="{{index}}">{{item.name}}</view>
- </view>
- <swiper bindchange="bindChange" class="swiper-box" current="{{currentTab}}" duration="300" style="height:{{containerHeight}}px">
- <swiper-item wx:for="{{navList}}" wx:for-item="navItem" wx:key="{{index}}">
- <scroll-view scrollY bindscrolltolower="getCurrentList" class="order-scroll-view" scrollTop="{{scrollTop}}" style="height: {{containerHeight}}px">
- <view class="noRecordCon" wx:if="{{order.length===0}}">
- <image class="noRecordImg" src="../../images/noRecord.png"></image>
- <view class="noRecord">还没有记录 快去分享吧~</view>
- </view>
- <block wx:else>
- <view class="item" wx:for="{{order}}" wx:key="{{index}}">
- <view class="distributionNum">
- <text class="distributionTime">{{item.order_num_alias}}</text>
- <text class="statusName">{{item.status_name}}</text>
- </view>
- <view class="spu" wx:for="{{item.goods_list}}" wx:for-item="goods" wx:key="{{goods.order_goods_id}}">
- <image src='{{goods.goods_images}}' style="width:60px;height:60px;" class='i-class goodsImg' mode='widthFix'></image>
- <view class="detail">
- <view class="goodsName">{{goods.name}}</view>
- <view class="commission">团单金额 ¥{{goods.total}} |
- <text wx:if="{{item.order_status_id!=11 && item.order_status_id!=6}}">预估</text>佣金 ¥{{goods.commision}}</view>
- </view>
- </view>
- <view class="distributionCommision" wx:if="{{item.shipping_fare!='免运费' && item.delivery == 'tuanz_send'}}">
- <text class="fareCommision">配送收入: ¥{{item.shipping_fare}}</text>
- <text class="totalCommision">合计佣金: ¥{{item.total_commision}}(含配送)</text>
- </view>
- <view class="distributionCommision" wx:else>
- <text class="totalCommision" wx:if="{{item.order_status_id!=5&&item.order_status_id!=7}}">合计佣金: ¥{{item.total_commision}}</text>
- </view>
- </view>
- <i-loadMore tip="{{tip}}" wx:if="{{!isHideLoadMore}}"></i-loadMore>
- </block>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
- <view bindtap="refresh" class="refresh">
- <image class="icon-refresh refreshImg" src="../../images/refresh.png"></image>
- <span>刷新</span>
- </view>
- </view>
|