移动系统liao
2024-05-09 5d6cb15ac86d9174393cb9d1538d69b567e2c26c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!-- 我的团队 -->
<template>
    <view>
        <u-navbar title="我的团队" safeAreaInsetTop fixed placeholder>
            <view class="coreshop-navbar-left-slot" slot="left">
                <u-icon name="arrow-left" size="19" @click="goNavigateBack"></u-icon>
                <u-line direction="column" :hairline="false" length="16" margin="0 8px"></u-line>
                <u-icon name="home" size="22" @click="goHome"></u-icon>
            </view>
            <view slot="right">
            </view>
        </u-navbar>
        <u-sticky customNavHeight="48">
            <view class="head_box coreshop-bg-red coreshop-padding-top-10  coreshop-padding-bottom-10">
                <!-- 推荐人 -->
                <view class="referrer-box coreshop-flex coreshop-align-center coreshop-padding-left-15  coreshop-padding-right-15" v-if="referrerInfo && referrerInfo.avatarImage">
                    推荐人:
                    <image class="referrer-avatarImage" :src="referrerInfo.avatarImage" mode=""></image>
                    {{ referrerInfo.nickName }}
                </view>
                <view class="referrer-box coreshop-flex coreshop-align-center  coreshop-padding-left-15  coreshop-padding-right-15" v-else>
                    推荐人:无
                </view>
                <!-- 团队数据总览 -->
                <view class="team-data-box coreshop-flex coreshop-justify-between">
                    <view class="data-card">
                        <view class="total-item">
                            <view class="item-title">团队总人数(人)</view>
                            <view class="total-num">{{ userInfo.count || 0 }}</view>
                        </view>
                        <view class="category-item coreshop-flex coreshop-justify-between">
                            <view class="coreshop-flex coreshop-flex-direction coreshop-align-start flex-sub">
                                <view class="item-title">一级成员</view>
                                <view class="category-num">{{ userInfo.first || 0 }}</view>
                            </view>
                            <view class="coreshop-flex coreshop-flex-direction coreshop-align-start flex-sub">
                                <view class="item-title">二级成员</view>
                                <view class="category-num">{{ userInfo.second || 0 }}</view>
                            </view>
                        </view>
                    </view>
                    <view class="data-card">
                        <view class="total-item">
                            <view class="item-title">本月推广人数(人)</view>
                            <view class="total-num">{{ userInfo.monthCount || 0 }}</view>
                        </view>
                        <view class="category-item coreshop-flex coreshop-justify-between">
                            <view class="coreshop-flex coreshop-flex-direction coreshop-align-start flex-sub">
                                <view class="item-title">一级成员</view>
                                <view class="category-num">{{ userInfo.monthFirst || 0 }}</view>
                            </view>
                            <view class="coreshop-flex coreshop-flex-direction coreshop-align-start ">
                                <view class="item-title">二级成员</view>
                                <view class="category-num">{{ userInfo.monthSecond || 0 }}</view>
                            </view>
                        </view>
                    </view>
                </view>
            </view>
        </u-sticky>
        <!-- 团队列表 -->
        <view class="coreshop-team-box">
            <view class="coreshop-team-list">
                <view v-if="list.length">
                    <view class="coreshop-team-children coreshop-flex coreshop-align-center" v-for="children in list" :key="children.id">
                        <image class="head-img" :src="children.avatarImage" mode=""></image>
                        <view class="head-info">
                            <view class="name-box coreshop-flex coreshop-justify-between">
                                <view class="name-text">{{ children.nickName }}</view>
                                <view class="coreshop-flex coreshop-align-center">
                                    {{ children.mobile }}
                                </view>
                            </view>
                            <view class="coreshop-flex coreshop-justify-between">
                                <view class="head-time">{{ $u.timeFormat(children.createTime, 'yyyy年mm月dd日') }}</view>
                                <view class="child-num coreshop-margin-left-30">下级成员:{{ children.childNum || 0 }}人</view>
                            </view>
                        </view>
                    </view>
                    <u-loadmore :status="loadStatus" :icon-type="iconType" :load-text="loadText" margin-top="20" margin-bottom="20" />
                </view>
                <!-- 无数据时默认显示 -->
                <view class="coreshop-emptybox" v-else>
                    <u-empty :icon="$globalConstVars.apiFilesUrl+'/static/images/empty/history.png'" icon-size="150" text="暂无邀请列表" mode="list"></u-empty>
                </view>
 
            </view>
        </view>
    </view>
</template>
 
<script>
 
    export default {
        data() {
            return {
                userInfo: {
                    count: 0,
                    first: 0,
                    second: 0,
                    monthCount: 0,
                    monthFirst: 0,
                    monthSecond: 0,
 
                },
                referrerInfo: {}, //推荐人信息
                twoTeamCount: 0, //二级成员
                agentInfo: uni.getStorageSync('agentInfo'),
                filterCurrent: 0,
                filterList: [
                    {
                        title: '综合',
                        isUnfold: false
                    },
                    {
                        title: '等级',
                        isUnfold: false
                    },
                    {
                        title: '加入时间',
                        isUnfold: false
                    }
                ],
                list: [],
                page: 1, //当前页
                limit: 10, //每页显示几条
                loadStatus: 'loadmore',
                iconType: 'flower',
                loadText: {
                    loadmore: '轻轻上拉',
                    loading: '努力加载中',
                    nomore: '实在没有了'
                },
                viewHeight: 0,
            };
        },
        onLoad() {
            this.getReferrerInfo();
            this.getDataList();
        },
        onReachBottom() {
            if (this.loadStatus === 'loadmore') {
                this.getDataList()
            }
        },
        methods: {
            getReferrerInfo() {
                this.$u.api.getMyInvite(null).then(res => {
                    if (res.status) {
                        this.referrerInfo = res.data;
                    } else {
                        this.$u.toast(res.msg)
                    }
                });
                this.$u.api.getDistributionTeamSum(null).then(res => {
                    if (res.status) {
                        this.userInfo.count = res.data.count;
                        this.userInfo.first = res.data.first;
                        this.userInfo.second = res.data.second;
                        this.userInfo.monthCount = res.data.monthCount;
                        this.userInfo.monthFirst = res.data.monthFirst;
                        this.userInfo.monthSecond = res.data.monthSecond;
                    } else {
                        this.$u.toast(res.msg)
                    }
                });
            },
            getDataList() {
                this.loadStatus = 'loading'
                let data = {
                    page: this.page,
                    limit: this.limit
                }
                this.$u.api.recommendUserList(data).then(res => {
                    if (res.status) {
                        for (let i = 0; i < res.data.length; i++) {
                            if (res.data[i].avatarImage == null) {
                                res.data[i].avatarImage = this.$store.state.config.shopDefaultImage;
                            }
                            if (res.data[i].nickName == null) {
                                res.data[i].nickName = '暂无昵称'
                            }
                        }
                        let list = this.list.concat(res.data);
                        this.list = list;
                        if (res.otherData.totalPages > this.page) {
                            this.page++
                            this.loadStatus = 'loadmore'
                        } else {
                            this.loadStatus = 'nomore'
                        }
                    } else {
                        this.$u.toast(res.msg)
                    }
                });
            }
        },
    };
</script>
 
<style lang="scss" scoped>
    @import "team.scss";
</style>