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.
36 lines
1.2 KiB
36 lines
1.2 KiB
<!--pages/user/myTeam/index.wxml--> |
|
<view class="index-page"> |
|
<view class="data-panel-box acea-row row-between"> |
|
<view> |
|
<view>今日新增</view> |
|
<view class="fz40">{{teamInfo.todayNum}}人</view> |
|
</view> |
|
<view> |
|
<view>一级</view> |
|
<view class="fz40">{{teamInfo.firstNum}}人</view> |
|
</view> |
|
<view> |
|
<view>二级</view> |
|
<view class="fz40">{{teamInfo.secondNum}}人</view> |
|
</view> |
|
</view> |
|
|
|
<view class="t-header acea-row row-middle row-between"> |
|
<view class="h-item">成员名称</view> |
|
<view class="h-item w180">一级积分收益</view> |
|
<view class="h-item w180">二级积分收益</view> |
|
</view> |
|
<view class="t-body"> |
|
<view class="b-item acea-row row-middle row-between" wx:for="{{teamInfo.teamList}}" wx:key="index"> |
|
<view class="name">{{item.name}}</view> |
|
<view class="name w180">{{item.firstNum}}积分</view> |
|
<view class="name w180">{{item.secondNum}}积分</view> |
|
</view> |
|
<!-- <view class="b-item acea-row row-middle row-between"> |
|
<view class="name">李元芳</view> |
|
<view class="name w180">500积分</view> |
|
<view class="name w180">9030积分</view> |
|
</view> --> |
|
</view> |
|
<view class="loading-status">{{loadingStatus}}</view> |
|
</view>
|
|
|