mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-22 00:01:59 +08:00
151 lines
4.4 KiB
Vue
151 lines
4.4 KiB
Vue
![]() |
<!-- 客户统计 -->
|
|||
|
<template>
|
|||
|
<!-- Echarts图 -->
|
|||
|
<el-card shadow="never">
|
|||
|
<el-skeleton :loading="loading" animated>
|
|||
|
<Echart :height="500" :options="echartsOption" />
|
|||
|
</el-skeleton>
|
|||
|
</el-card>
|
|||
|
|
|||
|
<!-- 统计列表 -->
|
|||
|
<el-card shadow="never" class="mt-16px">
|
|||
|
<el-table v-loading="loading" :data="list">
|
|||
|
<el-table-column label="序号" align="center" type="index" width="80" />
|
|||
|
<el-table-column label="员工姓名" prop="ownerUserName" min-width="100" />
|
|||
|
<el-table-column
|
|||
|
label="新增客户数"
|
|||
|
align="right"
|
|||
|
prop="customerCreateCount"
|
|||
|
min-width="200"
|
|||
|
/>
|
|||
|
<el-table-column label="成交客户数" align="right" prop="customerDealCount" min-width="200" />
|
|||
|
<el-table-column label="客户成交率(%)" align="right" min-width="200">
|
|||
|
<template #default="scope">
|
|||
|
{{
|
|||
|
scope.row.customerCreateCount !== 0
|
|||
|
? round((scope.row.customerDealCount / scope.row.customerCreateCount) * 100, 2)
|
|||
|
: 0
|
|||
|
}}
|
|||
|
</template>
|
|||
|
</el-table-column>
|
|||
|
<el-table-column label="合同总金额" align="right" prop="contractPrice" min-width="200" />
|
|||
|
<el-table-column label="回款金额" align="right" prop="receivablePrice" min-width="200" />
|
|||
|
<el-table-column label="未回款金额" align="right" min-width="200">
|
|||
|
<template #default="scope">
|
|||
|
{{ round(scope.row.contractPrice - scope.row.receivablePrice, 2) }}
|
|||
|
</template>
|
|||
|
</el-table-column>
|
|||
|
<el-table-column label="回款完成率(%)" align="right" min-width="200">
|
|||
|
<template #default="scope">
|
|||
|
{{
|
|||
|
scope.row.contractPrice !== 0
|
|||
|
? round((scope.row.receivablePrice / scope.row.contractPrice) * 100, 2)
|
|||
|
: 0
|
|||
|
}}
|
|||
|
</template>
|
|||
|
</el-table-column>
|
|||
|
</el-table>
|
|||
|
</el-card>
|
|||
|
</template>
|
|||
|
<script setup lang="ts">
|
|||
|
import {
|
|||
|
StatisticsCustomerApi,
|
|||
|
CrmStatisticsCustomerSummaryByDateRespVO,
|
|||
|
CrmStatisticsCustomerSummaryByUserRespVO
|
|||
|
} from '@/api/crm/statistics/customer'
|
|||
|
import { EChartsOption } from 'echarts'
|
|||
|
import { round } from 'lodash-es'
|
|||
|
|
|||
|
defineOptions({ name: 'CustomerSummary' })
|
|||
|
const props = defineProps<{ queryParams: any }>() // 搜索参数
|
|||
|
|
|||
|
const loading = ref(false) // 加载中
|
|||
|
const list = ref<CrmStatisticsCustomerSummaryByUserRespVO[]>([]) // 列表的数据
|
|||
|
|
|||
|
/** 柱状图配置:纵向 */
|
|||
|
const echartsOption = reactive<EChartsOption>({
|
|||
|
grid: {
|
|||
|
left: 20,
|
|||
|
right: 20,
|
|||
|
bottom: 20,
|
|||
|
containLabel: true
|
|||
|
},
|
|||
|
legend: {},
|
|||
|
series: [
|
|||
|
{
|
|||
|
name: '新增客户数',
|
|||
|
type: 'bar',
|
|||
|
data: []
|
|||
|
},
|
|||
|
{
|
|||
|
name: '成交客户数',
|
|||
|
type: 'bar',
|
|||
|
data: []
|
|||
|
}
|
|||
|
],
|
|||
|
toolbox: {
|
|||
|
feature: {
|
|||
|
dataZoom: {
|
|||
|
xAxisIndex: false // 数据区域缩放:Y 轴不缩放
|
|||
|
},
|
|||
|
brush: {
|
|||
|
type: ['lineX', 'clear'] // 区域缩放按钮、还原按钮
|
|||
|
},
|
|||
|
saveAsImage: { show: true, name: '客户总量分析' } // 保存为图片
|
|||
|
}
|
|||
|
},
|
|||
|
tooltip: {
|
|||
|
trigger: 'axis',
|
|||
|
axisPointer: {
|
|||
|
type: 'shadow'
|
|||
|
}
|
|||
|
},
|
|||
|
yAxis: {
|
|||
|
type: 'value',
|
|||
|
name: '数量(个)'
|
|||
|
},
|
|||
|
xAxis: {
|
|||
|
type: 'category',
|
|||
|
name: '日期',
|
|||
|
data: []
|
|||
|
}
|
|||
|
}) as EChartsOption
|
|||
|
|
|||
|
/** 获取统计数据 */
|
|||
|
const loadData = async () => {
|
|||
|
// 1. 加载统计数据
|
|||
|
loading.value = true
|
|||
|
const customerSummaryByDate = await StatisticsCustomerApi.getCustomerSummaryByDate(
|
|||
|
props.queryParams
|
|||
|
)
|
|||
|
const customerSummaryByUser = await StatisticsCustomerApi.getCustomerSummaryByUser(
|
|||
|
props.queryParams
|
|||
|
)
|
|||
|
// 2.1 更新 Echarts 数据
|
|||
|
if (echartsOption.xAxis && echartsOption.xAxis['data']) {
|
|||
|
echartsOption.xAxis['data'] = customerSummaryByDate.map(
|
|||
|
(s: CrmStatisticsCustomerSummaryByDateRespVO) => s.time
|
|||
|
)
|
|||
|
}
|
|||
|
if (echartsOption.series && echartsOption.series[0] && echartsOption.series[0]['data']) {
|
|||
|
echartsOption.series[0]['data'] = customerSummaryByDate.map(
|
|||
|
(s: CrmStatisticsCustomerSummaryByDateRespVO) => s.customerCreateCount
|
|||
|
)
|
|||
|
}
|
|||
|
if (echartsOption.series && echartsOption.series[1] && echartsOption.series[1]['data']) {
|
|||
|
echartsOption.series[1]['data'] = customerSummaryByDate.map(
|
|||
|
(s: CrmStatisticsCustomerSummaryByDateRespVO) => s.customerDealCount
|
|||
|
)
|
|||
|
}
|
|||
|
// 2.2 更新列表数据
|
|||
|
list.value = customerSummaryByUser
|
|||
|
loading.value = false
|
|||
|
}
|
|||
|
defineExpose({ loadData })
|
|||
|
|
|||
|
/** 初始化 */
|
|||
|
onMounted(() => {
|
|||
|
loadData()
|
|||
|
})
|
|||
|
</script>
|