分销团队统计数据查询

This commit is contained in:
donqi 2022-08-16 23:15:45 +08:00
parent 00bb44f449
commit 48516938b1
2 changed files with 80 additions and 77 deletions

View File

@ -339,6 +339,7 @@
},
methods: {
async loadData() {
await this.$request.refreshCurUserCache();
this.curUserInfo = this.$request.getCurUserInfo();
this.myInfo = await this.$api.data('myInfo');
},

View File

@ -6,16 +6,19 @@
<block slot="content">查看团队{{totalMembers}}</block>
</cu-custom>
<!-- 团队成员信息 -->
<view class="margin-top-sm margin-lr-sm padding bg-white name-card shadow-warp" v-for="(member, index) in members">
<!-- 个人名片 -->
<view class="flex justify-start">
<view class="cu-avatar round" :style="'background-image:url(' + member.customerLogoUrl + '); width: 130rpx; height: 130rpx;'"></view>
<view class="margin-left-sm flex-column-around">
<view class="text-black text-xl">{{member.name}}</view>
<view class="">
<text class="margin-right-xs">角色合伙人</text>
</view>
</view>
<view class="margin-top-sm margin-lr-sm padding bg-white name-card shadow-warp"
v-for="(member, index) in members">
<!-- 个人名片 -->
<view class="flex justify-start">
<view class="cu-avatar round"
:style="'background-image:url(' + member.customerLogoUrl + '); width: 130rpx; height: 130rpx;'">
</view>
<view class="margin-left-sm flex-column-around">
<view class="text-black text-xl">{{member.name}}</view>
<view class="">
<text class="margin-right-xs">角色合伙人</text>
</view>
</view>
</view>
<!-- 实名及公告图标 -->
<view class="flex justify-end oper-bar">
@ -24,53 +27,48 @@
</view>
</view>
<!-- 人员下辖团队统计 -->
<view class="cu-list grid no-border col-4 solid-top margin-top-sm">
<view class="cu-item">
<view class="margin-bottom-xs">客户数</view>
<view class="text-red">{{member.customerNums}}</view>
</view>
<view class="cu-item">
<view class="margin-bottom-xs">本月绑定</view>
<view class="text-red">{{member.customerBindCurMonth}}</view>
</view>
<view class="cu-item solid-left">
<view class="margin-bottom-xs">团队</view>
<view class="text-red">{{member.teamNums}}</view>
</view>
<view class="cu-item">
<view class="margin-bottom-xs">本月绑定</view>
<view class="text-red">{{member.teamBindCurMonth}}</view>
</view>
<view class="cu-item" v-for="(item, index) in member.orderAnalyse">
<view class="margin-bottom-xs">{{item.title}}</view>
<view class="text-red" v-if="item.unit === 'yuan'">
{{item.num}}
</view>
<view v-else class="text-red">
{{item.num}}{{item.unit}}
</view>
<view class="cu-list grid no-border col-2 solid-top margin-top-sm">
<view class="cu-item" v-for="(item, index) in member.analyseItems" v-if="index < 2">
<view class="margin-bottom-xs">{{item.title}}</view>
<view class="text-red" v-if="item.unit === 'yuan'">
{{item.value}}
</view>
<view v-else class="text-red">
{{item.value}}{{item.unit}}
</view>
</view>
</view>
</view>
<view class="cu-list grid no-border col-4 solid-top">
<view class="cu-item" v-for="(item, index) in member.analyseItems" v-if="index >= 2">
<view class="margin-bottom-xs">{{item.title}}</view>
<view class="text-red" v-if="item.unit === 'yuan'">
{{item.value}}
</view>
<view v-else class="text-red">
{{item.value}}{{item.unit}}
</view>
</view>
</view>
</view>
<load-status-bar class="margin-tb-xl" ref="loadStatusBar" @loadMore="loadMyOperaMembers"></load-status-bar>
</view>
</template>
<script>
import horizontalNameCard from '@/components/common-card/horizontal-name-card.vue';
import horizontalNameCard from '@/components/common-card/horizontal-name-card.vue';
import loadStatusBar from '@/components/custom-bar/load-status-bar.vue';
export default {
components: {
horizontalNameCard,
horizontalNameCard,
loadStatusBar
},
data() {
return {
return {
totalMembers: 0,
members: [],
curUserInfo: {},
pageNum: 0,
members: [],
curUserInfo: {},
pageNum: 0,
pageSize: 0
}
},
@ -78,43 +76,43 @@
this.loadData();
},
methods: {
async loadData() {
this.curUserInfo = this.$request.getCurUserInfo();
async loadData() {
this.curUserInfo = this.$request.getCurUserInfo();
this.resetData();
// this.myOperaMembers = await this.$api.data('myOperaMembers');
// this.myOperaMembers = await this.$api.data('myOperaMembers');
this.loadMyOperaMembers();
},
resetData() {
this.pageNum = this.$globalData.initPageNum;
this.pageSize = this.$globalData.initPageSize;
},
makePhoneCall(phoneNum) {
uni.makePhoneCall({
phoneNumber: phoneNum
})
},
async loadMyOperaMembers(params = {}) {
params.pageNum = this.pageNum;
params.pageSize = this.pageSize;
params.customerPlace = this.curUserInfo.customerId;
this.$refs.loadStatusBar.showLoading();
try {
let res = await this.$request.qryCustomerList(params);
let rowsLength = res.rows.length;
if (rowsLength > 0) {
this.members = this.members.concat(res.rows);
this.totalMembers = res.total;
this.pageNum++;
if (rowsLength === this.pageSize) {
this.$refs.loadStatusBar.showLoadMore();
return;
}
}
this.$refs.loadStatusBar.showLoadOver();
} catch (e) {
console.error(e)
this.$refs.loadStatusBar.showLoadErr();
}
},
resetData() {
this.pageNum = this.$globalData.initPageNum;
this.pageSize = this.$globalData.initPageSize;
},
makePhoneCall(phoneNum) {
uni.makePhoneCall({
phoneNumber: phoneNum
})
},
async loadMyOperaMembers(params = {}) {
params.pageNum = this.pageNum;
params.pageSize = this.pageSize;
params.customerPlace = this.curUserInfo.customerId;
this.$refs.loadStatusBar.showLoading();
try {
let res = await this.$request.qryCustomerList(params);
let rowsLength = res.rows.length;
if (rowsLength > 0) {
this.members = this.members.concat(res.rows);
this.totalMembers = res.total;
this.pageNum++;
if (rowsLength === this.pageSize) {
this.$refs.loadStatusBar.showLoadMore();
return;
}
}
this.$refs.loadStatusBar.showLoadOver();
} catch (e) {
console.error(e)
this.$refs.loadStatusBar.showLoadErr();
}
}
}
}
@ -131,4 +129,8 @@
right: 20rpx;
font-size: 50rpx;
}
.cu-list+.cu-list {
margin-top: unset;
}
</style>