| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <template>
- <div class="app-container home">
- <!-- <el-divider /> -->
- <el-row :gutter="12" class="stat-row">
- <el-col :xs="12" :sm="12" :md="6" :lg="6" :xl="6">
- <el-card shadow="hover" class="stat-card stat-card--blue">
- <div class="stat-title">商品总数</div>
- <div class="stat-value">{{ stats.totalGoods }}</div>
- </el-card>
- </el-col>
- <el-col :xs="12" :sm="12" :md="6" :lg="6" :xl="6">
- <el-card shadow="hover" class="stat-card stat-card--orange">
- <div class="stat-title">停售商品</div>
- <div class="stat-value">{{ stats.stoppedGoods }}</div>
- </el-card>
- </el-col>
- <el-col :xs="12" :sm="12" :md="6" :lg="6" :xl="6">
- <el-card shadow="hover" class="stat-card stat-card--purple">
- <div class="stat-title">上下架申请</div>
- <div class="stat-value">{{ stats.shelfApply }}</div>
- </el-card>
- </el-col>
- <el-col :xs="12" :sm="12" :md="6" :lg="6" :xl="6">
- <el-card shadow="hover" class="stat-card stat-card--green">
- <div class="stat-title">新鲜闪购</div>
- <div class="stat-value">{{ stats.flashSale }}</div>
- </el-card>
- </el-col>
- </el-row>
- <el-row :gutter="12" class="chart-row">
- <el-col :xs="24" :sm="24" :md="14" :lg="14" :xl="14">
- <el-card shadow="hover">
- <template #header>
- <span>商品状态统计</span>
- </template>
- <div ref="goodsStatusRef" class="chart" />
- </el-card>
- </el-col>
- <el-col :xs="24" :sm="24" :md="10" :lg="10" :xl="10">
- <el-card shadow="hover">
- <template #header>
- <span>新鲜好物分布</span>
- </template>
- <div ref="freshPieRef" class="chart" />
- </el-card>
- </el-col>
- </el-row>
- <el-row :gutter="12" class="info-row">
- <el-col :xs="24" :sm="24" :md="14" :lg="14" :xl="14">
- <el-card shadow="hover">
- <template #header>
- <span>新鲜闪购TOP5</span>
- </template>
- <div class="top-list">
- <div v-for="(item, idx) in freshTop" :key="idx" class="top-item">
- <div class="top-left">
- <span class="top-rank">{{ idx + 1 }}</span>
- <span class="top-name">{{ item.name }}</span>
- </div>
- <div class="top-right">{{ item.count }}件</div>
- </div>
- </div>
- </el-card>
- </el-col>
- <el-col :xs="24" :sm="24" :md="10" :lg="10" :xl="10">
- <el-card shadow="hover">
- <template #header>
- <span>待处理</span>
- </template>
- <div class="todo-box">
- <div class="todo-item">
- <span class="todo-label">商品审核</span>
- <span class="todo-value">{{ pending.review }}</span>
- </div>
- <div class="todo-item">
- <span class="todo-label">上下架申请</span>
- <span class="todo-value">{{ pending.shelfApply }}</span>
- </div>
- <div class="todo-item">
- <span class="todo-label">停售复核</span>
- <span class="todo-value">{{ pending.stopCheck }}</span>
- </div>
- </div>
- </el-card>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup name="Index" lang="ts">
- import * as echarts from 'echarts';
- const goodsStatusRef = ref();
- const freshPieRef = ref();
- let goodsStatusChart: echarts.ECharts | null = null;
- let freshPieChart: echarts.ECharts | null = null;
- const stats = reactive({
- totalGoods: 0,
- stoppedGoods: 0,
- shelfApply: 0,
- flashSale: 0
- });
- const freshTop = ref([
- { name: '精品草莓(500g)', count: 12 },
- { name: '云南小番茄(1kg)', count: 10 },
- { name: '原切牛排(2片)', count: 8 },
- { name: '高山生菜(2颗)', count: 7 },
- { name: '鲜活基围虾(500g)', count: 6 }
- ]);
- const pending = reactive({
- review: 5,
- shelfApply: 12,
- stopCheck: 3
- });
- const renderCharts = () => {
- stats.totalGoods = 1280;
- stats.stoppedGoods = 36;
- stats.shelfApply = 12;
- stats.flashSale = 58;
- const goodsStatus = [
- { name: '商品总数', value: stats.totalGoods },
- { name: '停售商品', value: stats.stoppedGoods },
- { name: '上下架申请', value: stats.shelfApply },
- { name: '新鲜闪购', value: stats.flashSale }
- ];
- if (goodsStatusRef.value) {
- goodsStatusChart?.dispose();
- goodsStatusChart = echarts.init(goodsStatusRef.value, 'macarons');
- goodsStatusChart.setOption({
- tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } },
- grid: { left: 20, right: 20, bottom: 20, top: 20, containLabel: true },
- xAxis: { type: 'category', data: goodsStatus.map((i) => i.name), axisLabel: { interval: 0 } },
- yAxis: { type: 'value' },
- series: [{ type: 'bar', data: goodsStatus.map((i) => i.value), barMaxWidth: 40 }]
- });
- }
- const freshGoods = [
- { name: '果蔬生鲜', value: 18 },
- { name: '零食饮料', value: 14 },
- { name: '粮油调味', value: 9 },
- { name: '日用百货', value: 11 },
- { name: '乳品烘焙', value: 6 }
- ];
- if (freshPieRef.value) {
- freshPieChart?.dispose();
- freshPieChart = echarts.init(freshPieRef.value, 'macarons');
- freshPieChart.setOption({
- tooltip: { trigger: 'item', formatter: '{b}: {c} ({d}%)' },
- legend: { top: 'bottom' },
- series: [
- {
- type: 'pie',
- radius: ['38%', '72%'],
- center: ['50%', '45%'],
- label: { show: true, formatter: '{b}' },
- data: freshGoods
- }
- ]
- });
- }
- };
- const resizeCharts = () => {
- goodsStatusChart?.resize();
- freshPieChart?.resize();
- };
- onMounted(() => {
- renderCharts();
- window.addEventListener('resize', resizeCharts);
- });
- onBeforeUnmount(() => {
- window.removeEventListener('resize', resizeCharts);
- goodsStatusChart?.dispose();
- goodsStatusChart = null;
- freshPieChart?.dispose();
- freshPieChart = null;
- });
- </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;
- }
- 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;
- }
- }
- .chart-row {
- margin-top: 12px;
- }
- .info-row {
- margin-top: 12px;
- }
- .stat-row {
- margin-bottom: 12px;
- }
- .stat-card {
- height: 92px;
- border-radius: 10px;
- overflow: hidden;
- color: #fff;
- }
- .stat-title {
- font-size: 14px;
- opacity: 0.9;
- }
- .stat-value {
- font-size: 26px;
- font-weight: 600;
- margin-top: 6px;
- }
- .stat-card--blue {
- background: linear-gradient(135deg, #2d8cf0 0%, #57a3f3 100%);
- }
- .stat-card--orange {
- background: linear-gradient(135deg, #ff9900 0%, #ffb347 100%);
- }
- .stat-card--purple {
- background: linear-gradient(135deg, #7c5cff 0%, #a491ff 100%);
- }
- .stat-card--green {
- background: linear-gradient(135deg, #19be6b 0%, #47cb89 100%);
- }
- .chart {
- height: 320px;
- width: 100%;
- }
- .top-list {
- display: flex;
- flex-direction: column;
- gap: 10px;
- }
- .top-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .top-left {
- display: flex;
- align-items: center;
- gap: 10px;
- min-width: 0;
- }
- .top-rank {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- width: 22px;
- height: 22px;
- border-radius: 6px;
- background: rgba(45, 140, 240, 0.12);
- color: #2d8cf0;
- font-size: 12px;
- flex: 0 0 auto;
- }
- .top-name {
- color: #303133;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .top-right {
- color: #606266;
- flex: 0 0 auto;
- }
- .todo-box {
- display: flex;
- flex-direction: column;
- gap: 10px;
- }
- .todo-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .todo-label {
- color: #606266;
- }
- .todo-value {
- font-weight: 600;
- color: #303133;
- }
- .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;
- }
- }
- }
- </style>
|