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.
23 lines
823 B
23 lines
823 B
|
5 years ago
|
<!--pages/user/retail/index.wxml-->
|
||
|
|
<view wx:if="{{info}}">
|
||
|
|
<title title="我的分销"></title>
|
||
|
|
<view class="top">
|
||
|
|
<view>我的佣金</view>
|
||
|
|
<view class="money-all" wx:if="{{info.total_collection}}">{{info.total_collection/100}}</view>
|
||
|
|
<view class="money-all" wx:else>0</view>
|
||
|
|
</view>
|
||
|
|
<view class="line-item">
|
||
|
|
<text>我的粉丝数(人)</text>
|
||
|
|
<view>{{info.fans}} </view>
|
||
|
|
</view>
|
||
|
|
<navigator url="order/index" class="line-item">
|
||
|
|
<text>我的业绩(订单数)</text>
|
||
|
|
<view style="flex:1"></view>
|
||
|
|
<view>{{info.count?info.count:0}} </view>
|
||
|
|
<view style="margin-left:10rpx" class="iconfont icon-you"></view>
|
||
|
|
</navigator>
|
||
|
|
<navigator url="goods/index" class="line-item">
|
||
|
|
<text>可分销产品</text>
|
||
|
|
<view class="iconfont icon-you"></view>
|
||
|
|
</navigator>
|
||
|
|
</view>
|