spring
3 天以前 90ab562f5eac24e0e3b334335f6d76438236f305
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
<template>
  <div class="app-container statistics-container">
 
    <!-- 总体统计卡片 -->
    <el-row :gutter="20" class="statistics-cards">
      <el-col :span="6" v-for="(item, index) in overviewData" :key="index">
        <el-card class="statistics-card" :class="item.type">
          <div class="card-content">
            <div class="card-icon">
              <el-icon :size="32">
                <component :is="item.icon" />
              </el-icon>
            </div>
            <div class="card-info">
              <div class="card-number">
                <el-skeleton-item v-if="loading" variant="text" style="width: 60px; height: 32px;" />
                <span v-else>{{ item.value }}</span>
              </div>
              <div class="card-label">{{ item.label }}</div>
            </div>
          </div>
        </el-card>
      </el-col>
    </el-row>
 
    <!-- 图表区域 -->
    <el-row :gutter="20" class="charts-section">
      <el-col :span="12">
        <el-card class="chart-card">
          <template #header>
            <div class="card-header">
              <span>档案分类统计</span>
            </div>
          </template>
          <div class="chart-container">
            <div ref="categoryChartRef" class="chart"></div>
          </div>
        </el-card>
      </el-col>
 
      <el-col :span="12">
        <el-card class="chart-card">
          <template #header>
            <div class="card-header">
              <span>档案状态统计</span>
            </div>
          </template>
          <div class="chart-container">
            <div ref="statusChartRef" class="chart"></div>
          </div>
        </el-card>
      </el-col>
    </el-row>
  </div>
</template>
 
<script setup>
import { ref, onMounted, nextTick, onUnmounted } from "vue";
import { ElMessage } from "element-plus";
import { Refresh } from "@element-plus/icons-vue";
import * as echarts from "echarts";
import { 
  getDocumentationOverview, 
  getDocumentationCategoryStats, 
  getDocumentationStatusStats 
} from "@/api/fileManagement/document";
import { 
  Document, 
  Folder, 
  Tickets, 
  Calendar 
} from "@element-plus/icons-vue";
 
// 响应式数据
const overviewData = ref([
  {
    label: "总档案数",
    value: 0,
    icon: "Document",
    type: "primary",
  },
  {
    label: "分类数量",
    value: 0,
    icon: "Folder",
    type: "success",
  },
  {
    label: "借出档案",
    value: 0,
    icon: "Tickets",
    type: "warning",
  },
  {
    label: "本月新增",
    value: 0,
    icon: "Calendar",
    type: "info",
  },
]);
 
const categoryChartRef = ref(null);
const statusChartRef = ref(null);
 
// 图表实例
let categoryChart = null;
let statusChart = null;
 
// 加载状态
const loading = ref(false);
const autoRefreshInterval = ref(null);
 
// 自动刷新开关
const autoRefreshEnabled = ref(true);
 
// 自动刷新间隔(5分钟)
const AUTO_REFRESH_INTERVAL = 5 * 60 * 1000;
 
// 启动自动刷新
const startAutoRefresh = () => {
  if (autoRefreshInterval.value) {
    clearInterval(autoRefreshInterval.value);
  }
  if (autoRefreshEnabled.value) {
    autoRefreshInterval.value = setInterval(() => {
      refreshData();
    }, AUTO_REFRESH_INTERVAL);
  }
};
 
// 停止自动刷新
const stopAutoRefresh = () => {
  if (autoRefreshInterval.value) {
    clearInterval(autoRefreshInterval.value);
    autoRefreshInterval.value = null;
  }
};
 
// 切换自动刷新状态
const toggleAutoRefresh = (value) => {
  if (value) {
    startAutoRefresh();
  } else {
    stopAutoRefresh();
  }
};
 
// 加载总体统计数据
const loadOverviewData = async () => {
  try {
    const response = await getDocumentationOverview();
    if (response.code === 200) {
      const data = response.data;
      overviewData.value[0].value = data.totalDocsCount || 0;
      overviewData.value[1].value = data.categoryNumCount || 0;
      overviewData.value[2].value = data.borrowedDocsCount || 0;
      overviewData.value[3].value = data.monthlyAddedDocsCount || 0;
    }
  } catch (error) {
    console.error('加载总体统计数据失败:', error);
    ElMessage.error('加载总体统计数据失败');
  }
};
 
// 加载分类统计数据
const loadCategoryData = async () => {
  try {
    const response = await getDocumentationCategoryStats();
    if (response.code === 200) {
      renderCategoryChart(response.data);
    }
  } catch (error) {
    console.error('加载分类统计数据失败:', error);
    ElMessage.error('加载分类统计数据失败');
  }
};
 
// 加载状态统计数据
const loadStatusData = async () => {
  try {
    const response = await getDocumentationStatusStats();
    if (response.code === 200) {
      renderStatusChart(response.data);
    }
  } catch (error) {
    console.error('加载状态统计数据失败:', error);
    ElMessage.error('加载状态统计数据失败');
  }
};
 
// 刷新数据
const refreshData = async () => {
  loading.value = true;
  try {
    await Promise.all([
      loadOverviewData(),
      loadCategoryData(),
      loadStatusData()
    ]);
    ElMessage.success('数据刷新成功');
  } catch (error) {
    console.error('刷新数据失败:', error);
    ElMessage.error('刷新数据失败');
  } finally {
    loading.value = false;
  }
};
 
// 初始化图表
const initCharts = () => {
  // 延迟初始化,确保DOM元素已经渲染
  setTimeout(() => {
    if (categoryChartRef.value) {
      categoryChart = echarts.init(categoryChartRef.value);
    }
    
    if (statusChartRef.value) {
      statusChart = echarts.init(statusChartRef.value);
    }
    
    // 初始化完成后加载数据
    loadCategoryData();
    loadStatusData();
  }, 300);
};
 
// 渲染分类统计图表
const renderCategoryChart = (data) => {
  if (!categoryChart) return;
  let newData = data.map(item => {
    return {
      name: item.category,
      value: item.count
    }
  })
  
  const option = {
    title: {
      text: "档案分类分布",
      left: "center",
      textStyle: {
        fontSize: 16,
        fontWeight: "normal",
      },
    },
    tooltip: {
      trigger: "item",
      formatter: "{a} <br/>{b}: {c} ({d}%)",
    },
    legend: {
      orient: "vertical",
      left: "left",
      top: "middle",
    },
    series: [
      {
        name: "档案数量",
        type: "pie",
        radius: ["40%", "70%"],
        center: ["60%", "50%"],
        data: newData || [
          { name: "技术文档", value: 450 },
          { name: "管理文档", value: 320 },
          { name: "财务文档", value: 280 },
          { name: "人事文档", value: 200 },
        ],
        emphasis: {
          itemStyle: {
            shadowBlur: 10,
            shadowOffsetX: 0,
            shadowColor: "rgba(0, 0, 0, 0.5)",
          },
        },
      },
    ],
  };
  
  try {
    categoryChart.setOption(option);
  } catch (error) {
    console.error('分类图表渲染失败:', error);
  }
};
 
// 渲染状态统计图表
const renderStatusChart = (data) => {
  if (!statusChart) return;
  let newData = data.map(item => {
    return {
      name: item.docStatus,
      value: item.count
    }
  })
  const option = {
    title: {
      text: "档案状态分布",
      left: "center",
      textStyle: {
        fontSize: 16,
        fontWeight: "normal",
      },
    },
    tooltip: {
      trigger: "item",
      formatter: "{a} <br/>{b}: {c} ({d}%)",
    },
    legend: {
      orient: "vertical",
      left: "left",
      top: "middle",
    },
    series: [
      {
        name: "档案数量",
        type: "pie",
        radius: ["40%", "70%"],
        center: ["60%", "50%"],
        roseType: false,
        data: newData || [
          { name: "正常", value: 1150, itemStyle: { color: "#67C23A" } },
          { name: "借出", value: 89, itemStyle: { color: "#E6A23C" } },
          { name: "丢失", value: 8, itemStyle: { color: "#F56C6C" } },
          { name: "损坏", value: 4, itemStyle: { color: "#909399" } },
        ],
        emphasis: {
          itemStyle: {
            shadowBlur: 10,
            shadowOffsetX: 0,
            shadowColor: "rgba(0, 0, 0, 0.5)",
          },
        },
      },
    ],
  };
  
  try {
    statusChart.setOption(option);
  } catch (error) {
    console.error('状态图表渲染失败:', error);
  }
};
 
onMounted(() => {
  loadOverviewData();
  initCharts();
  startAutoRefresh();
});
 
// 组件卸载时清理定时器
onUnmounted(() => {
  stopAutoRefresh();
});
</script>
 
<style scoped>
.statistics-container {
  padding: 20px;
  background-color: #f5f7fa;
  min-height: 100vh;
}
 
.page-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  color: white;
}
 
.page-header h2 {
  color: white;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
}
 
.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0 0 15px 0;
}
 
.header-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 20px;
}
 
.refresh-btn {
  margin-left: 20px;
}
 
.statistics-cards {
  margin-bottom: 30px;
}
 
.statistics-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
}
 
.statistics-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
 
.statistics-card.primary {
  border-left: 4px solid #409EFF;
  background: linear-gradient(135deg, #409EFF 0%, #36a3f7 100%);
}
 
.statistics-card.success {
  border-left: 4px solid #67C23A;
  background: linear-gradient(135deg, #67C23A 0%, #85ce61 100%);
}
 
.statistics-card.warning {
  border-left: 4px solid #E6A23C;
  background: linear-gradient(135deg, #E6A23C 0%, #ebb563 100%);
}
 
.statistics-card.info {
  border-left: 4px solid #909399;
  background: linear-gradient(135deg, #909399 0%, #a6a9ad 100%);
}
 
.card-content {
  display: flex;
  align-items: center;
  padding: 20px;
}
 
.card-icon {
  margin-right: 20px;
  color: white;
}
 
.card-info {
  flex: 1;
}
 
.card-number {
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}
 
.card-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
 
.charts-section {
  margin-bottom: 30px;
}
 
.chart-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
}
 
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #303133;
  padding: 15px 20px;
  border-bottom: 1px solid #ebeef5;
}
 
.chart-container {
  height: 400px;
  padding: 20px;
}
 
.chart {
  width: 100%;
  height: 100%;
}
 
/* 响应式设计 */
@media (max-width: 768px) {
  .statistics-container {
    padding: 10px;
  }
  
  .page-header {
    padding: 15px;
  }
  
  .page-header h2 {
    font-size: 24px;
  }
  
  .header-controls {
    flex-direction: column;
    gap: 15px;
  }
  
  .refresh-btn {
    margin-left: 0;
  }
  
  .statistics-cards .el-col {
    margin-bottom: 15px;
  }
  
  .charts-section .el-col {
    margin-bottom: 20px;
  }
  
  .chart-container {
    height: 300px;
  }
}
 
@media (max-width: 480px) {
  .page-header h2 {
    font-size: 20px;
  }
  
  .card-number {
    font-size: 24px;
  }
  
  .chart-container {
    height: 250px;
  }
}
</style>