refactor(@vben/web-antd): ERP 首页适配已有组件

- 移除不必要的 API 调用和数据处理逻辑
- 使用 AnalysisOverview 组件替换自定义统计卡片
- 优化 TimeSummaryChart组件,支持不同类型的数据展示
- 简化页面结构,提高组件的可复用性和可维护性
pull/178/head
nehc 2025-07-21 21:36:40 +08:00
parent 0c1bfe62a2
commit 073dc4c6c5
3 changed files with 128 additions and 97 deletions

View File

@ -1,29 +1,69 @@
<script lang="ts" setup> <script lang="ts" setup>
import { VbenCountToAnimator } from '@vben/common-ui'; import type { AnalysisOverviewItem } from '@vben/common-ui';
import { computed } from 'vue';
import { AnalysisOverview } from '@vben/common-ui';
import {
SvgBellIcon,
SvgCakeIcon,
SvgCardIcon,
SvgDownloadIcon,
} from '@vben/icons';
interface Props { interface Props {
title: string; saleSummary?: {
value?: number; monthPrice?: number;
todayPrice?: number;
yearPrice?: number;
yesterdayPrice?: number;
};
purchaseSummary?: {
monthPrice?: number;
todayPrice?: number;
yearPrice?: number;
yesterdayPrice?: number;
};
} }
withDefaults(defineProps<Props>(), { const props = withDefaults(defineProps<Props>(), {
value: 0, saleSummary: () => ({}),
purchaseSummary: () => ({}),
}); });
/** 概览数据 */
const overviewItems = computed<AnalysisOverviewItem[]>(() => [
{
icon: SvgCardIcon,
title: '今日销售',
totalTitle: '今日采购',
totalValue: props.purchaseSummary?.todayPrice || 0,
value: props.saleSummary?.todayPrice || 0,
},
{
icon: SvgCakeIcon,
title: '昨日销售',
totalTitle: '昨日采购',
totalValue: props.purchaseSummary?.yesterdayPrice || 0,
value: props.saleSummary?.yesterdayPrice || 0,
},
{
icon: SvgDownloadIcon,
title: '本月销售',
totalTitle: '本月采购',
totalValue: props.purchaseSummary?.monthPrice || 0,
value: props.saleSummary?.monthPrice || 0,
},
{
icon: SvgBellIcon,
title: '今年销售',
totalTitle: '今年采购',
totalValue: props.purchaseSummary?.yearPrice || 0,
value: props.saleSummary?.yearPrice || 0,
},
]);
</script> </script>
<template> <template>
<div class="flex flex-col gap-2 rounded-lg border bg-white p-6 shadow-sm"> <AnalysisOverview :items="overviewItems" />
<div class="flex items-center justify-between text-gray-500">
<span>{{ title }}</span>
</div>
<div class="flex flex-row items-baseline justify-between">
<VbenCountToAnimator
:end-val="value"
:decimals="2"
:duration="500"
prefix="¥"
class="text-3xl font-semibold text-gray-900"
/>
</div>
</div>
</template> </template>

View File

@ -3,23 +3,51 @@ import type { EChartsOption } from 'echarts';
import type { EchartsUIType } from '@vben/plugins/echarts'; import type { EchartsUIType } from '@vben/plugins/echarts';
import { ref, watch } from 'vue'; import type { ErpPurchaseStatisticsApi } from '#/api/erp/statistics/purchase';
import type { ErpSaleStatisticsApi } from '#/api/erp/statistics/sale';
import { onMounted, ref, watch } from 'vue';
import { EchartsUI, useEcharts } from '@vben/plugins/echarts'; import { EchartsUI, useEcharts } from '@vben/plugins/echarts';
import { Card } from 'ant-design-vue'; import { Card } from 'ant-design-vue';
import {
getPurchaseSummary,
getPurchaseTimeSummary,
} from '#/api/erp/statistics/purchase';
import { getSaleSummary, getSaleTimeSummary } from '#/api/erp/statistics/sale';
import { CardTitle } from '#/components/card'; import { CardTitle } from '#/components/card';
interface Props { interface Props {
title: string; title: string;
value?: Array<{ price: number; time: string }>; type?: 'purchase' | 'sale';
} }
const props = withDefaults(defineProps<Props>(), { const props = withDefaults(defineProps<Props>(), {
value: () => [], type: 'sale',
}); });
/** 销售统计数据 */
const saleSummary = ref<ErpSaleStatisticsApi.SaleSummary>(); //
const saleTimeSummaryList = ref<ErpSaleStatisticsApi.SaleTimeSummary[]>(); //
const getSaleStatistics = async () => {
saleSummary.value = await getSaleSummary();
saleTimeSummaryList.value = await getSaleTimeSummary();
};
/** 采购统计数据 */
const purchaseSummary = ref<ErpPurchaseStatisticsApi.PurchaseSummary>(); //
const purchaseTimeSummaryList =
ref<ErpPurchaseStatisticsApi.PurchaseTimeSummary[]>(); //
const getPurchaseStatistics = async () => {
purchaseSummary.value = await getPurchaseSummary();
purchaseTimeSummaryList.value = await getPurchaseTimeSummary();
};
/** 获取当前类型的时段数据 */
const currentTimeSummaryList = ref<Array<{ price: number; time: string }>>();
const chartRef = ref<EchartsUIType>(); const chartRef = ref<EchartsUIType>();
const { renderEcharts } = useEcharts(chartRef); const { renderEcharts } = useEcharts(chartRef);
@ -80,8 +108,20 @@ const lineChartOptions: EChartsOption = {
}, },
}; };
/** 初始化数据 */
const initData = async () => {
if (props.type === 'sale') {
await getSaleStatistics();
currentTimeSummaryList.value = saleTimeSummaryList.value;
} else {
await getPurchaseStatistics();
currentTimeSummaryList.value = purchaseTimeSummaryList.value;
}
};
/** 监听数据变化并更新图表 */
watch( watch(
() => props.value, () => currentTimeSummaryList.value,
(val) => { (val) => {
if (!val || val.length === 0) { if (!val || val.length === 0) {
return; return;
@ -109,6 +149,19 @@ watch(
}, },
{ immediate: true }, { immediate: true },
); );
/** 组件挂载时初始化数据 */
onMounted(() => {
initData();
});
/** 暴露数据给父组件使用 */
defineExpose({
saleSummary,
purchaseSummary,
saleTimeSummaryList,
purchaseTimeSummaryList,
});
</script> </script>
<template> <template>

View File

@ -1,50 +1,21 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { ErpPurchaseStatisticsApi } from '#/api/erp/statistics/purchase'; import { ref } from 'vue';
import type { ErpSaleStatisticsApi } from '#/api/erp/statistics/sale';
import { onMounted, ref } from 'vue';
import { DocAlert, Page } from '@vben/common-ui'; import { DocAlert, Page } from '@vben/common-ui';
import { Col, Row, Spin } from 'ant-design-vue'; import { Col, Row, Spin } from 'ant-design-vue';
import {
getPurchaseSummary,
getPurchaseTimeSummary,
} from '#/api/erp/statistics/purchase';
import { getSaleSummary, getSaleTimeSummary } from '#/api/erp/statistics/sale';
import SummaryCard from './components/SummaryCard.vue'; import SummaryCard from './components/SummaryCard.vue';
import TimeSummaryChart from './components/TimeSummaryChart.vue'; import TimeSummaryChart from './components/TimeSummaryChart.vue';
/** ERP首页 */ /** ERP首页 */
defineOptions({ name: 'ErpHome' }); defineOptions({ name: 'ErpHome' });
const loading = ref(true); // const loading = ref(false); //
/** 获得销售统计 */ /** 图表组件引用 */
const saleSummary = ref<ErpSaleStatisticsApi.SaleSummary>(); // const saleChartRef = ref();
const saleTimeSummaryList = ref<ErpSaleStatisticsApi.SaleTimeSummary[]>(); // const purchaseChartRef = ref();
const getSaleStatistics = async () => {
saleSummary.value = await getSaleSummary();
saleTimeSummaryList.value = await getSaleTimeSummary();
};
/** 获得采购统计 */
const purchaseSummary = ref<ErpPurchaseStatisticsApi.PurchaseSummary>(); //
const purchaseTimeSummaryList =
ref<ErpPurchaseStatisticsApi.PurchaseTimeSummary[]>(); //
const getPurchaseStatistics = async () => {
purchaseSummary.value = await getPurchaseSummary();
purchaseTimeSummaryList.value = await getPurchaseTimeSummary();
};
/** 初始化 */
onMounted(async () => {
loading.value = true;
await Promise.all([getSaleStatistics(), getPurchaseStatistics()]);
loading.value = false;
});
</script> </script>
<template> <template>
@ -59,56 +30,23 @@ onMounted(async () => {
<Spin :spinning="loading"> <Spin :spinning="loading">
<div class="flex flex-col gap-4"> <div class="flex flex-col gap-4">
<!-- 销售/采购的全局统计 --> <!-- 销售/采购的全局统计 -->
<Row :gutter="16">
<Col :md="6" :sm="12" :xs="24">
<SummaryCard title="今日销售" :value="saleSummary?.todayPrice" />
</Col>
<Col :md="6" :sm="12" :xs="24">
<SummaryCard <SummaryCard
title="昨日销售" :sale-summary="saleChartRef?.saleSummary"
:value="saleSummary?.yesterdayPrice" :purchase-summary="purchaseChartRef?.purchaseSummary"
/> />
</Col>
<Col :md="6" :sm="12" :xs="24">
<SummaryCard
title="今日采购"
:value="purchaseSummary?.todayPrice"
/>
</Col>
<Col :md="6" :sm="12" :xs="24">
<SummaryCard
title="昨日采购"
:value="purchaseSummary?.yesterdayPrice"
/>
</Col>
<Col :md="6" :sm="12" :xs="24">
<SummaryCard title="本月销售" :value="saleSummary?.monthPrice" />
</Col>
<Col :md="6" :sm="12" :xs="24">
<SummaryCard title="今年销售" :value="saleSummary?.yearPrice" />
</Col>
<Col :md="6" :sm="12" :xs="24">
<SummaryCard
title="本月采购"
:value="purchaseSummary?.monthPrice"
/>
</Col>
<Col :md="6" :sm="12" :xs="24">
<SummaryCard title="今年采购" :value="purchaseSummary?.yearPrice" />
</Col>
</Row>
<!-- 销售/采购的时段统计 --> <!-- 销售/采购的时段统计 -->
<Row :gutter="16"> <Row :gutter="16">
<!-- 销售统计 --> <!-- 销售统计 -->
<Col :md="12" :sm="12" :xs="24"> <Col :md="12" :sm="12" :xs="24">
<TimeSummaryChart title="销售统计" :value="saleTimeSummaryList" /> <TimeSummaryChart ref="saleChartRef" title="销售统计" type="sale" />
</Col> </Col>
<!-- 采购统计 --> <!-- 采购统计 -->
<Col :md="12" :sm="12" :xs="24"> <Col :md="12" :sm="12" :xs="24">
<TimeSummaryChart <TimeSummaryChart
ref="purchaseChartRef"
title="采购统计" title="采购统计"
:value="purchaseTimeSummaryList" type="purchase"
/> />
</Col> </Col>
</Row> </Row>