<script lang="ts" setup>
|
import type { EchartsUIType } from '../../../../packages/effects/plugins/src/echarts';
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
import type { CrmStatisticsCustomerApi } from '#/api/crm/statistics/customer';
|
|
import { onMounted, ref } from 'vue';
|
|
import { ContentWrap, Page } from '../../../../packages/effects/common-ui/src';
|
import { EchartsUI, useEcharts } from '../../../../packages/effects/plugins/src/echarts';
|
import { beginOfDay, endOfDay, formatDateTime } from '../../../../packages/utils/src';
|
|
import { Tabs } from 'ant-design-vue';
|
|
import { useVbenForm } from '#/adapter/form';
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
import {
|
getContractCountPerformance,
|
getContractPricePerformance,
|
getReceivablePricePerformance,
|
} from '#/api/crm/statistics/performance';
|
import { $t } from '#/locales';
|
|
import { getChartOptions } from './chartOptions';
|
import { customerSummaryTabs, useGridFormSchema } from './data';
|
|
const activeTabName = ref('ContractCountPerformance');
|
const chartRef = ref<EchartsUIType>();
|
const { renderEcharts } = useEcharts(chartRef);
|
|
const [QueryForm, formApi] = useVbenForm({
|
commonConfig: {
|
componentProps: {
|
class: 'w-full',
|
},
|
},
|
schema: useGridFormSchema(),
|
showCollapseButton: true,
|
submitButtonOptions: {
|
content: $t('common.query'),
|
},
|
wrapperClass: 'grid-cols-1 md:grid-cols-2',
|
handleSubmit: async () => {
|
await handleTabChange(activeTabName.value);
|
},
|
});
|
const [Grid, gridApi] = useVbenVxeGrid({
|
gridOptions: {
|
columns: [],
|
height: 'auto',
|
keepSource: true,
|
pagerConfig: {
|
enabled: false,
|
},
|
proxyConfig: {
|
enabled: false,
|
},
|
rowConfig: {
|
keyField: 'id',
|
isHover: true,
|
},
|
toolbarConfig: {
|
enabled: false,
|
},
|
} as VxeTableGridOptions<CrmStatisticsCustomerApi.CustomerSummaryByUserRespVO>,
|
});
|
|
/** tab 切换 */
|
async function handleTabChange(key: any) {
|
activeTabName.value = key;
|
const queryParams = (await formApi.getValues()) as any;
|
// 将年份转换为年初和年末的日期时间
|
const selectYear = Number.parseInt(queryParams.time);
|
queryParams.times = [];
|
queryParams.times[0] = formatDateTime(beginOfDay(new Date(selectYear, 0, 1)));
|
queryParams.times[1] = formatDateTime(endOfDay(new Date(selectYear, 11, 31)));
|
let data: any[] = [];
|
const columnsData: any[] = [];
|
let tableData: any[] = [];
|
switch (key) {
|
case 'ContractCountPerformance': {
|
tableData = [
|
{ title: '当月合同数量统计(个)' },
|
{ title: '上月合同数量统计(个)' },
|
{ title: '去年当月合同数量统计(个)' },
|
{ title: '环比增长率(%)' },
|
{ title: '同比增长率(%)' },
|
];
|
data = await getContractCountPerformance(queryParams);
|
break;
|
}
|
case 'ContractPricePerformance': {
|
tableData = [
|
{ title: '当月合同金额统计(元)' },
|
{ title: '上月合同金额统计(元)' },
|
{ title: '去年当月合同金额统计(元)' },
|
{ title: '环比增长率(%)' },
|
{ title: '同比增长率(%)' },
|
];
|
data = await getContractPricePerformance(queryParams);
|
break;
|
}
|
case 'ReceivablePricePerformance': {
|
tableData = [
|
{ title: '当月回款金额统计(元)' },
|
{ title: '上月回款金额统计(元)' },
|
{ title: '去年当月回款金额统计(元)' },
|
{ title: '环比增长率(%)' },
|
{ title: '同比增长率(%)' },
|
];
|
data = await getReceivablePricePerformance(queryParams);
|
break;
|
}
|
default: {
|
break;
|
}
|
}
|
const columnObj = {
|
title: '日期',
|
field: 'title',
|
minWidth: 200,
|
align: 'left',
|
};
|
columnsData.splice(0); // 清空数组
|
columnsData.push(columnObj);
|
data.forEach((item: any, index: number) => {
|
const columnObj = { title: item.time, field: `field${index}` };
|
columnsData.push(columnObj);
|
tableData[0][`field${index}`] = item.currentMonthCount;
|
tableData[1][`field${index}`] = item.lastMonthCount;
|
tableData[2][`field${index}`] = item.lastYearCount;
|
tableData[3][`field${index}`] =
|
item.lastMonthCount === 0
|
? 'NULL'
|
: (
|
((item.currentMonthCount - item.lastMonthCount) /
|
item.lastMonthCount) *
|
100
|
).toFixed(2);
|
tableData[4][`field${index}`] =
|
item.lastYearCount === 0
|
? 'NULL'
|
: (
|
((item.currentMonthCount - item.lastYearCount) /
|
item.lastYearCount) *
|
100
|
).toFixed(2);
|
});
|
await renderEcharts(getChartOptions(key, data), true);
|
await gridApi.grid.reloadColumn(columnsData);
|
await gridApi.grid.reloadData(tableData);
|
}
|
|
/** 初始化加载 */
|
onMounted(() => {
|
handleTabChange(activeTabName.value);
|
});
|
</script>
|
|
<template>
|
<Page auto-content-height>
|
<ContentWrap>
|
<QueryForm />
|
<Tabs
|
v-model:active-key="activeTabName"
|
class="w-full"
|
@change="handleTabChange"
|
>
|
<Tabs.TabPane
|
v-for="item in customerSummaryTabs"
|
:key="item.key"
|
:tab="item.tab"
|
:force-render="true"
|
/>
|
</Tabs>
|
<EchartsUI class="mb-20 h-full w-full" ref="chartRef" />
|
<Grid class="min-h-[400px]" />
|
</ContentWrap>
|
</Page>
|
</template>
|