296 lines
7.1 KiB
Vue
296 lines
7.1 KiB
Vue
|
|
<!-- 页面 -->
|
|||
|
|
<template>
|
|||
|
|
<s-layout title="我的团队" :class="state.scrollTop ? 'team-wrap' : ''" navbar="inner">
|
|||
|
|
<view class="header-box" :style="[
|
|||
|
|
{
|
|||
|
|
marginTop: '-' + Number(statusBarHeight + 88) + 'rpx',
|
|||
|
|
paddingTop: Number(statusBarHeight + 108) + 'rpx',
|
|||
|
|
},
|
|||
|
|
]">
|
|||
|
|
<!-- 推荐人 -->
|
|||
|
|
<view v-if="userInfo.parent_user" class="referrer-box ss-flex ss-col-center">
|
|||
|
|
推荐人:
|
|||
|
|
<image class="referrer-avatar ss-m-r-10" :src="sheep.$url.cdn(userInfo.parent_user.avatar)"
|
|||
|
|
mode="aspectFill">
|
|||
|
|
</image>
|
|||
|
|
{{ userInfo.parent_user.nickname }}
|
|||
|
|
</view>
|
|||
|
|
<!-- 团队数据总览 -->
|
|||
|
|
<view class="team-data-box ss-flex ss-col-center ss-row-between">
|
|||
|
|
<!-- <view class="data-card">
|
|||
|
|
<view class="total-item">
|
|||
|
|
<view class="item-title">团队总人数(人)</view>
|
|||
|
|
<view class="total-num">{{ agentInfo.child_user_count_all || 0 }}</view>
|
|||
|
|
</view>
|
|||
|
|
<view class="category-item ss-flex">
|
|||
|
|
<view class="ss-flex-1">
|
|||
|
|
<view class="item-title">一级成员</view>
|
|||
|
|
<view class="category-num">{{ agentInfo.child_user_count_1 || 0 }}</view>
|
|||
|
|
</view>
|
|||
|
|
<view class="ss-flex-1">
|
|||
|
|
<view class="item-title">二级成员</view>
|
|||
|
|
<view class="category-num">{{ agentInfo.child_user_count_2 || 0 }}</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view> -->
|
|||
|
|
<view class="data-card">
|
|||
|
|
<view class="total-item">
|
|||
|
|
<view class="item-title">团队分销商人数(人)</view>
|
|||
|
|
<view class="total-num">{{ agentInfo.child_agent_count_all || 0 }}</view>
|
|||
|
|
</view>
|
|||
|
|
<view class="category-item ss-flex">
|
|||
|
|
<view class="ss-flex-1">
|
|||
|
|
<view class="item-title">一级分销商</view>
|
|||
|
|
<view class="category-num">{{ agentInfo.child_agent_count_1 || 0 }}</view>
|
|||
|
|
</view>
|
|||
|
|
<view class="ss-flex-1">
|
|||
|
|
<view class="item-title">二级分销商</view>
|
|||
|
|
<view class="category-num">{{ agentInfo.child_agent_count_2 || 0 }}</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<!-- 搜索框 -->
|
|||
|
|
<view class="search-box">
|
|||
|
|
<!-- :style="[{ top: Number(statusBarHeight + 75) + 'rpx' }]" -->
|
|||
|
|
<uni-section style="border-radius: 192rpx;padding: 0;width: 100%;height: 70rpx;width: 690rpx;" type="line">
|
|||
|
|
<uni-search-bar v-model="listQuery.keywords" style="border-radius: 192rpx;" @confirm="searchCus"
|
|||
|
|
radius="23" placeholder="搜索您需要的信息" bgColor="#f8f8f8" clearButton="none" cancelButton="none" />
|
|||
|
|
</uni-section>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<view class="list-box">
|
|||
|
|
<uni-list :border="false">
|
|||
|
|
<uni-list-chat v-for="item in state.pagination.data" :key="item.id" :avatar-circle="true"
|
|||
|
|
:title="item.nickname" :avatar="sheep.$url.cdn(item.avatar)"
|
|||
|
|
:note="filterUserNum(item.agent?.child_user_count_1)">
|
|||
|
|
<view class="chat-custom-right">
|
|||
|
|
<view v-if="item.agent?.level_info" class="tag-box ss-flex ss-col-center">
|
|||
|
|
<image class="tag-img" :src="sheep.$url.cdn(item.agent.level_info.image)" mode="aspectFill">
|
|||
|
|
</image>
|
|||
|
|
<text class="tag-title">{{ item.agent.level_info.name }}</text>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<text class="time-text">{{ item.createtime }}</text>
|
|||
|
|
</view>
|
|||
|
|
</uni-list-chat>
|
|||
|
|
</uni-list>
|
|||
|
|
</view>
|
|||
|
|
<s-empty v-if="state.pagination.total === 0" icon="/static/data-empty.png" text="暂无团队信息">
|
|||
|
|
</s-empty>
|
|||
|
|
</s-layout>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script setup>
|
|||
|
|
import sheep from '@/sheep';
|
|||
|
|
import {
|
|||
|
|
onLoad,
|
|||
|
|
onReachBottom
|
|||
|
|
} from '@dcloudio/uni-app';
|
|||
|
|
import {
|
|||
|
|
computed,
|
|||
|
|
reactive,
|
|||
|
|
ref
|
|||
|
|
} from 'vue';
|
|||
|
|
import _ from 'lodash';
|
|||
|
|
import {
|
|||
|
|
onPageScroll
|
|||
|
|
} from '@dcloudio/uni-app';
|
|||
|
|
|
|||
|
|
const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
|
|||
|
|
const agentInfo = computed(() => sheep.$store('user').agentInfo);
|
|||
|
|
const userInfo = computed(() => sheep.$store('user').userInfo);
|
|||
|
|
const headerBg = sheep.$url.css('/assets/addons/shopro/uniapp/user/withdraw_bg.png');
|
|||
|
|
|
|||
|
|
onPageScroll((e) => {
|
|||
|
|
if (e.scrollTop > 100) {
|
|||
|
|
state.scrollTop = false;
|
|||
|
|
} else {
|
|||
|
|
state.scrollTop = true;
|
|||
|
|
}
|
|||
|
|
});
|
|||
|
|
const state = reactive({
|
|||
|
|
pagination: {
|
|||
|
|
data: [],
|
|||
|
|
current_page: 1,
|
|||
|
|
total: 1,
|
|||
|
|
last_page: 1,
|
|||
|
|
},
|
|||
|
|
loadStatus: '',
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
const listQuery = ref({
|
|||
|
|
keywords: '',
|
|||
|
|
page: 1,
|
|||
|
|
limit: 20,
|
|||
|
|
time: ''
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
function filterUserNum(num) {
|
|||
|
|
if (_.isNil(num)) {
|
|||
|
|
return '';
|
|||
|
|
}
|
|||
|
|
return `下级团队${num}人`;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//搜索
|
|||
|
|
function searchCus() {
|
|||
|
|
console.log('搜索条件',listQuery.value.keywords);
|
|||
|
|
state.pagination.data = [];
|
|||
|
|
getTeamList()
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
async function getTeamList(page = 1, list_rows = 16) {
|
|||
|
|
state.loadStatus = 'loading';
|
|||
|
|
let res = await sheep.$api.commission.team({
|
|||
|
|
list_rows,
|
|||
|
|
page,
|
|||
|
|
keywords: listQuery.value.keywords,
|
|||
|
|
});
|
|||
|
|
if (res.code === 1) {
|
|||
|
|
let orderList = _.concat(state.pagination.data, res.data.data);
|
|||
|
|
state.pagination = {
|
|||
|
|
...res.data,
|
|||
|
|
data: orderList,
|
|||
|
|
};
|
|||
|
|
if (state.pagination.current_page < state.pagination.last_page) {
|
|||
|
|
state.loadStatus = 'more';
|
|||
|
|
} else {
|
|||
|
|
state.loadStatus = 'noMore';
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
onLoad(async () => {
|
|||
|
|
getTeamList();
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
// 加载更多
|
|||
|
|
function loadmore() {
|
|||
|
|
if (state.loadStatus !== 'noMore') {
|
|||
|
|
getTeamList(state.pagination.current_page + 1);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 上拉加载更多
|
|||
|
|
onReachBottom(() => {
|
|||
|
|
loadmore();
|
|||
|
|
});
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style lang="scss" scoped>
|
|||
|
|
.header-box {
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
padding: 0 20rpx 20rpx 20rpx;
|
|||
|
|
width: 750rpx;
|
|||
|
|
z-index: 3;
|
|||
|
|
position: relative;
|
|||
|
|
background: v-bind(headerBg) no-repeat,
|
|||
|
|
linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
|
|||
|
|
background-size: 750rpx 100%;
|
|||
|
|
|
|||
|
|
// 团队信息总览
|
|||
|
|
.team-data-box {
|
|||
|
|
.data-card {
|
|||
|
|
width: 305rpx;
|
|||
|
|
background: #ffffff;
|
|||
|
|
border-radius: 20rpx;
|
|||
|
|
padding: 20rpx;
|
|||
|
|
|
|||
|
|
.item-title {
|
|||
|
|
font-size: 22rpx;
|
|||
|
|
font-weight: 500;
|
|||
|
|
color: #999999;
|
|||
|
|
line-height: 30rpx;
|
|||
|
|
margin-bottom: 10rpx;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.total-item {
|
|||
|
|
margin-bottom: 30rpx;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.total-num {
|
|||
|
|
font-size: 38rpx;
|
|||
|
|
font-weight: 500;
|
|||
|
|
color: #333333;
|
|||
|
|
font-family: OPPOSANS;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.category-num {
|
|||
|
|
font-size: 26rpx;
|
|||
|
|
font-weight: 500;
|
|||
|
|
color: #333333;
|
|||
|
|
font-family: OPPOSANS;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.search-box {
|
|||
|
|
// width: 690rpx;
|
|||
|
|
width: 100%;
|
|||
|
|
height: 90rpx;
|
|||
|
|
background-color: #fff;
|
|||
|
|
// margin-left: 30rpx;
|
|||
|
|
// position: fixed;
|
|||
|
|
// z-index: 100;
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: center;
|
|||
|
|
align-items: center;
|
|||
|
|
padding: 30rpx 0;
|
|||
|
|
// padding-top: 10rpx;
|
|||
|
|
// margin: 30rpx 0;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.list-box {
|
|||
|
|
z-index: 3;
|
|||
|
|
position: relative;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chat-custom-right {
|
|||
|
|
.time-text {
|
|||
|
|
font-size: 22rpx;
|
|||
|
|
font-weight: 400;
|
|||
|
|
color: #999999;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tag-box {
|
|||
|
|
background: rgba(0, 0, 0, 0.2);
|
|||
|
|
border-radius: 21rpx;
|
|||
|
|
line-height: 30rpx;
|
|||
|
|
padding: 5rpx 10rpx;
|
|||
|
|
width: 140rpx;
|
|||
|
|
|
|||
|
|
.tag-img {
|
|||
|
|
width: 34rpx;
|
|||
|
|
height: 34rpx;
|
|||
|
|
margin-right: 6rpx;
|
|||
|
|
border-radius: 50%;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tag-title {
|
|||
|
|
font-size: 18rpx;
|
|||
|
|
font-weight: 500;
|
|||
|
|
color: rgba(255, 255, 255, 1);
|
|||
|
|
line-height: 20rpx;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 推荐人
|
|||
|
|
.referrer-box {
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
font-weight: 500;
|
|||
|
|
color: #ffffff;
|
|||
|
|
padding: 20rpx;
|
|||
|
|
|
|||
|
|
.referrer-avatar {
|
|||
|
|
width: 34rpx;
|
|||
|
|
height: 34rpx;
|
|||
|
|
border-radius: 50%;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</style>
|