You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

21 lines
710 B

<!--pages/user/retail/order/index.wxml-->
<title title="我的业绩"></title>
<navigator url="../list/index?month={{item.month}}" class="item" wx:for="{{list}}">
<view class="item-top">
<text>{{item.c_month}}</text>
<view>{{item.is_withdraw==0?'未':'已'}}结算</view>
</view>
<view class="line">
<text>订单数量</text>
<text>{{item.count}}</text>
</view>
<view class="line">
<text>订单金额</text>
<text>¥{{item.total_collection?item.total_collection/100:0}}</text>
</view>
<view class="line">
<text>佣金金额</text>
<text>¥{{item.totle_price?item.totle_price/100:0}}</text>
</view>
<view class="item-bottom">查看详情 ></view>
</navigator>