|
@@ -1,2 +1,41 @@
|
|
|
-<!--salesperson/pages/lxDetail/index.wxml-->
|
|
|
-<text>salesperson/pages/lxDetail/index.wxml</text>
|
|
|
+<view class="container">
|
|
|
+ <view class="statistics">
|
|
|
+ <view class="col">
|
|
|
+ <view class="row">
|
|
|
+ <view class="label">累计收益(元)</view>
|
|
|
+ <view class="money">3400.00</view>
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ <view class="label">累计销售(元)</view>
|
|
|
+ <view class="money">3400.00</view>
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ <view class="label">累计订单(笔)</view>
|
|
|
+ <view class="money">3400</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="col col2">
|
|
|
+ <view class="row">
|
|
|
+ <view class="label">可提现(元)</view>
|
|
|
+ <view class="money">3400.00</view>
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ <view class="label">待结算(元)</view>
|
|
|
+ <view class="money">3400.00</view>
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ <view class="label">累计邀请(人)</view>
|
|
|
+ <view class="money">3400</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="detailsBox">
|
|
|
+ <view class="title">展示明细</view>
|
|
|
+ <view class="categoryBox">
|
|
|
+ <view class="category {{currentIndex==item.id?'currentClass':''}}" wx:for="{{categoryList}}" wx:key="id"
|
|
|
+ data-index="{{item.id}}" data-title='{{item.title}}' bindtap="setClass">
|
|
|
+ {{item.title}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</view>
|