| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- <template>
- <div class="app-container home">
- <!-- <el-divider /> -->
- <el-row :gutter="12">
- <el-col :span="24">
- <div class="dashboard-title">数据看板</div>
- </el-col>
- <el-col :span="24">
- <div class="stat-grid">
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">商品总数</div>
- <div class="stat-value">{{ metrics.productTotal }}</div>
- </el-card>
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">自营商品</div>
- <div class="stat-value">{{ metrics.productSelf }}</div>
- </el-card>
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">上架商品</div>
- <div class="stat-value">{{ metrics.productOnSale }}</div>
- </el-card>
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">下架商品</div>
- <div class="stat-value">{{ metrics.productOffSale }}</div>
- </el-card>
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">停售商品</div>
- <div class="stat-value">{{ metrics.productStopSale }}</div>
- </el-card>
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">精选商品</div>
- <div class="stat-value">{{ metrics.productFeatured }}</div>
- </el-card>
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">商品总池</div>
- <div class="stat-value">{{ metrics.poolTotal }}</div>
- </el-card>
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">精选商品池</div>
- <div class="stat-value">{{ metrics.poolFeatured }}</div>
- </el-card>
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">方案数量</div>
- <div class="stat-value">{{ metrics.programTotal }}</div>
- </el-card>
- <el-card shadow="hover" class="stat-card">
- <div class="stat-label">今日方案新增</div>
- <div class="stat-value">{{ metrics.programTodayNew }}</div>
- </el-card>
- </div>
- </el-col>
- <el-col :span="12" class="card-box">
- <el-card shadow="hover" class="chart-card">
- <template #header>
- <span>商品状态分布</span>
- </template>
- <div ref="productStatusChartRef" class="chart" />
- </el-card>
- </el-col>
- <el-col :span="12" class="card-box">
- <el-card shadow="hover" class="chart-card">
- <template #header>
- <span>精选/停售/默认</span>
- </template>
- <div ref="productTypeChartRef" class="chart" />
- </el-card>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup name="Index" lang="ts">
- import * as echarts from 'echarts';
- import { getProductStatusCount, listBase } from '@/api/product/base';
- import { listProgram } from '@/api/product/program';
- import { listPool } from '@/api/product/pool/index';
- const productStatusChartRef = ref();
- const productTypeChartRef = ref();
- let productStatusChartInstance: echarts.ECharts | undefined;
- let productTypeChartInstance: echarts.ECharts | undefined;
- const metrics = reactive({
- productTotal: 0,
- productSelf: 0,
- productOnSale: 0,
- productOffSale: 0,
- productStopSale: 0,
- productFeatured: 0,
- poolTotal: 0,
- poolFeatured: 0,
- programTotal: 0,
- programTodayNew: 0
- });
- const safeTotal = (res: any): number => {
- const total = res?.total;
- return typeof total === 'number' ? total : 0;
- };
- const getTodayRange = () => {
- const now = new Date();
- const start = new Date(now.getFullYear(), now.getMonth(), now.getDate(), 0, 0, 0);
- const end = new Date(now.getFullYear(), now.getMonth(), now.getDate(), 23, 59, 59);
- const fmt = (d: Date) => {
- const pad = (n: number) => `${n}`.padStart(2, '0');
- return `${d.getFullYear()}-${pad(d.getMonth() + 1)}-${pad(d.getDate())} ${pad(d.getHours())}:${pad(d.getMinutes())}:${pad(d.getSeconds())}`;
- };
- return { beginTime: fmt(start), endTime: fmt(end) };
- };
- const renderProductStatusChart = () => {
- if (!productStatusChartRef.value) return;
- if (!productStatusChartInstance) {
- productStatusChartInstance = echarts.init(productStatusChartRef.value, 'macarons');
- }
- productStatusChartInstance.setOption({
- tooltip: { trigger: 'item' },
- legend: { bottom: 0 },
- series: [
- {
- name: '商品状态',
- type: 'pie',
- radius: ['45%', '70%'],
- avoidLabelOverlap: true,
- itemStyle: { borderRadius: 8, borderColor: '#fff', borderWidth: 2 },
- label: { show: false },
- emphasis: { label: { show: true, fontSize: 14, fontWeight: 'bold' } },
- labelLine: { show: false },
- data: [
- { value: metrics.productOnSale, name: '上架' },
- { value: metrics.productOffSale, name: '下架' }
- ]
- }
- ]
- });
- };
- const renderProductTypeChart = () => {
- if (!productTypeChartRef.value) return;
- if (!productTypeChartInstance) {
- productTypeChartInstance = echarts.init(productTypeChartRef.value, 'macarons');
- }
- const defaultCount = Math.max(metrics.productTotal - metrics.productFeatured - metrics.productStopSale, 0);
- productTypeChartInstance.setOption({
- tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } },
- grid: { left: 12, right: 12, top: 20, bottom: 20, containLabel: true },
- xAxis: { type: 'category', data: ['默认', '精选', '停售'] },
- yAxis: { type: 'value' },
- series: [
- {
- name: '数量',
- type: 'bar',
- barWidth: 36,
- itemStyle: { borderRadius: [8, 8, 0, 0] },
- data: [defaultCount, metrics.productFeatured, metrics.productStopSale]
- }
- ]
- });
- };
- const refreshMetrics = async () => {
- const statusRes = await getProductStatusCount();
- metrics.productTotal = statusRes.data?.total ?? 0;
- metrics.productOnSale = statusRes.data?.onSale ?? 0;
- metrics.productOffSale = statusRes.data?.offSale ?? 0;
- const [selfRes, featuredRes, stopSaleRes] = await Promise.all([
- listBase({ pageNum: 1, pageSize: 1, isSelf: 1 } as any),
- listBase({ pageNum: 1, pageSize: 1, productCategory: 2 } as any),
- listBase({ pageNum: 1, pageSize: 1, productCategory: 3 } as any)
- ]);
- metrics.productSelf = safeTotal(selfRes);
- metrics.productFeatured = safeTotal(featuredRes);
- metrics.productStopSale = safeTotal(stopSaleRes);
- const [poolTotalRes, poolFeaturedRes] = await Promise.all([
- listPool({ pageNum: 1, pageSize: 1 } as any),
- listPool({ pageNum: 1, pageSize: 1, type: 1 } as any)
- ]);
- metrics.poolTotal = safeTotal(poolTotalRes);
- metrics.poolFeatured = safeTotal(poolFeaturedRes);
- const programTotalRes = await listProgram({ pageNum: 1, pageSize: 1 } as any);
- metrics.programTotal = safeTotal(programTotalRes);
- const { beginTime, endTime } = getTodayRange();
- const programTodayRes = await listProgram({ pageNum: 1, pageSize: 1, params: { beginTime, endTime } } as any);
- metrics.programTodayNew = safeTotal(programTodayRes);
- renderProductStatusChart();
- renderProductTypeChart();
- };
- const onResize = () => {
- productStatusChartInstance?.resize();
- productTypeChartInstance?.resize();
- };
- onMounted(async () => {
- await refreshMetrics();
- window.addEventListener('resize', onResize);
- });
- onBeforeUnmount(() => {
- window.removeEventListener('resize', onResize);
- productStatusChartInstance?.dispose();
- productTypeChartInstance?.dispose();
- productStatusChartInstance = undefined;
- productTypeChartInstance = undefined;
- });
- </script>
- <style lang="scss" scoped>
- .home {
- blockquote {
- padding: 10px 20px;
- margin: 0 0 20px;
- font-size: 17.5px;
- border-left: 5px solid #eee;
- }
- hr {
- margin-top: 20px;
- margin-bottom: 20px;
- border: 0;
- border-top: 1px solid #eee;
- }
- .col-item {
- margin-bottom: 20px;
- }
- .dashboard-title {
- font-size: 18px;
- font-weight: 600;
- color: #1f2937;
- padding: 4px 2px 10px;
- }
- .stat-grid {
- display: grid;
- grid-template-columns: repeat(4, minmax(0, 1fr));
- gap: 12px;
- }
- .stat-card {
- border-radius: 12px;
- background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
- }
- .stat-label {
- font-size: 13px;
- color: #6b7280;
- margin-bottom: 8px;
- }
- .stat-value {
- font-size: 28px;
- font-weight: 700;
- color: #111827;
- letter-spacing: 0.5px;
- }
- .chart-card {
- border-radius: 12px;
- }
- .chart {
- height: 360px;
- }
- ul {
- padding: 0;
- margin: 0;
- }
- font-family: 'open sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
- font-size: 13px;
- color: #676a6c;
- overflow-x: hidden;
- ul {
- list-style-type: none;
- }
- h4 {
- margin-top: 0px;
- }
- h2 {
- margin-top: 10px;
- font-size: 26px;
- font-weight: 100;
- }
- p {
- margin-top: 10px;
- b {
- font-weight: 700;
- }
- }
- .update-log {
- ol {
- display: block;
- list-style-type: decimal;
- margin-block-start: 1em;
- margin-block-end: 1em;
- margin-inline-start: 0;
- margin-inline-end: 0;
- padding-inline-start: 40px;
- }
- }
- .index-style {
- font-size: 48px;
- font-weight: bold;
- letter-spacing: 15px;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 300px;
- background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
- border-radius: 10px;
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
- .typewriter-container {
- display: flex;
- }
- .typewriter-char {
- opacity: 0;
- transform: translateY(20px) rotate(-5deg);
- animation:
- typewriter-animation 0.8s ease forwards,
- pulse 2s ease-in-out infinite 1s;
- color: #2d8cf0;
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
- transition: color 0.3s ease;
- &:hover {
- color: #f06292;
- transform: scale(1.1);
- animation-play-state: paused;
- }
- }
- }
- @keyframes typewriter-animation {
- 0% {
- opacity: 0;
- transform: translateY(20px) rotate(-5deg);
- }
- 50% {
- opacity: 0.5;
- transform: translateY(10px) rotate(-2deg);
- }
- 100% {
- opacity: 1;
- transform: translateY(0) rotate(0deg);
- }
- }
- @keyframes pulse {
- 0% {
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
- transform: scale(1);
- }
- 50% {
- text-shadow:
- 0 0 15px rgba(45, 140, 240, 0.8),
- 0 0 30px rgba(45, 140, 240, 0.4);
- transform: scale(1.05);
- }
- 100% {
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
- transform: scale(1);
- }
- }
- @media (max-width: 1200px) {
- .stat-grid {
- grid-template-columns: repeat(2, minmax(0, 1fr));
- }
- }
- }
- </style>
|