qingcheng-xiaochengxu/pages/personCenter/teamManage/teamManage.wxml

77 lines
3.0 KiB
Plaintext
Raw Normal View History

2025-05-21 10:40:41 +00:00
<view class="flex-col page">
<view class="flex-col section">
<view class="flex-row equal-division group">
<view class="flex-col items-center group_2 group_1">
<text class="font text">直接代理人数</text>
2025-06-03 16:18:25 +00:00
<text class="font_2 text_13 mt-14">{{directAgentSize}}</text>
2025-05-21 10:40:41 +00:00
</view>
<view class="flex-col items-center group_2 group_3">
<text class="font text_2">团队总人数</text>
2025-06-03 16:18:25 +00:00
<text class="font_2 text_4 mt-12">{{teamSize}}</text>
2025-05-21 10:40:41 +00:00
</view>
<view class="flex-col items-start group_2 group_4">
<text class="font text_3">团队总收益</text>
2025-06-03 16:18:25 +00:00
<text class="font_2 text_1 mt-13">{{teamEarnings ? '¥' + teamEarnings : '¥0'}}</text>
2025-05-21 10:40:41 +00:00
</view>
</view>
2025-06-03 16:18:25 +00:00
<view class="flex-row justify-between items-center self-stretch section_2" bind:tap="gotoCommissionSetting">
2025-05-21 10:40:41 +00:00
<view class="flex-row items-center">
<image
class="shrink-0 image"
2025-05-28 04:51:02 +00:00
src="./images/qi.png"
2025-05-21 12:24:34 +00:00
mode="aspectFill"
2025-05-21 10:40:41 +00:00
/>
<text class="font_3 text_5 ml-5">请设置邀请下级抽成比例如0%</text>
</view>
<image
class="image_2"
2025-05-28 04:51:02 +00:00
src="./images/yjt.png"
2025-05-21 12:24:34 +00:00
mode="aspectFill"
2025-05-21 10:40:41 +00:00
/>
</view>
2025-06-03 16:18:25 +00:00
<view class="flex-row justify-end items-center self-center section_3" bindtap="copyInvitationCode">
2025-05-21 10:40:41 +00:00
<image
class="shrink-0 image_3"
2025-05-28 04:51:02 +00:00
src="./images/fuzhi.png"
2025-05-21 10:40:41 +00:00
/>
2025-06-03 16:18:25 +00:00
<text class="font text_6">我的邀请码:{{invitationCode}}</text>
2025-05-21 10:40:41 +00:00
</view>
</view>
<view class="flex-row justify-between items-center mt-13">
<text class="text_7">成员列表</text>
<view class="flex-row items-center section_4">
<image
class="image_4"
2025-05-28 04:51:02 +00:00
src="./images/ss.png"
2025-05-21 10:40:41 +00:00
/>
<input class="font text_8 ml-4" placeholder="请输入关键字"/>
</view>
</view>
<view class="flex-col list mt-13">
<view
class="flex-row items-center relative group_6"
2025-06-03 16:18:25 +00:00
wx:for="{{userMemberInfoVOList}}"
2025-05-21 10:40:41 +00:00
wx:for-item="item"
wx:for-index="index"
wx:key="index"
>
<view class="shrink-0 section_5"></view>
<view class="shrink-0 section_6 pos_2" style="{{index === 0 ? 'top:0rpx;' : ''}}"></view>
<view class="flex-col flex-1 relative section_1" style="{{index === 0 ? 'margin-top:0rpx;' : ''}}">
2025-06-03 16:18:25 +00:00
<text class="self-start font_3 text_9">{{item.nickName}}</text>
2025-05-21 10:40:41 +00:00
<view class="flex-col self-stretch section_7">
2025-06-03 16:18:25 +00:00
<text class="self-start font_4">手机号:{{item.phoneNumber}}</text>
2025-05-21 10:40:41 +00:00
<view class="flex-row justify-between self-stretch mt-19">
2025-06-03 16:18:25 +00:00
<text class="font_5">团队人数:{{item.teamSize}}</text>
<text class="font_6 text_15">给我创造的收益:¥{{item.parentEarnings}}</text>
2025-05-21 10:40:41 +00:00
</view>
</view>
<view class="flex-row items-center self-end group_5">
<text class="shrink-0 font_7">注册时间:</text>
2025-06-03 16:18:25 +00:00
<text class="flex-1 font_8 ml-3">{{item.registerTime}}</text>
2025-05-21 10:40:41 +00:00
</view>
</view>
</view>
</view>
2025-06-03 16:18:25 +00:00
</view>