From e5f64dc5a94fbffad50363531ed3d683caa5310b Mon Sep 17 00:00:00 2001 From: "zangch@mesnac.com" Date: Tue, 18 Nov 2025 08:50:17 +0800 Subject: [PATCH] =?UTF-8?q?feat(report):=20=E6=96=B0=E5=A2=9E=E8=AE=BE?= =?UTF-8?q?=E5=A4=87=E6=8A=A5=E8=A1=A8=E7=9B=B8=E5=85=B3=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E5=8F=8A=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增设备故障分析报表页面,支持按设备编码、故障类型和时间范围查询 - 实现故障次数Top10柱状图展示及数据表格展示 - 新增设备OEE分析报表页面,支持按设备编码和时间范围查询 - 实现设备OEE对比柱状图及相关数据表展示,支持百分比格式化显示 - 新增维修工时统计报表页面,支持按执行人和时间范围查询 - 实现维修工时Top10柱状图及数据表格展示,展示工单数、合计工时和平均工时 - 各报表均实现查询、重置功能及加载状态显示 - 使用echarts实现柱状图可视化展示 - 统一样式及布局,保障用户体验一致性 --- .../report/deviceFaultAnalysis/index.vue | 172 +++++++++++++++ src/views/report/deviceOeeAnalysis/index.vue | 195 ++++++++++++++++++ src/views/report/repairHoursStat/index.vue | 161 +++++++++++++++ 3 files changed, 528 insertions(+) create mode 100644 src/views/report/deviceFaultAnalysis/index.vue create mode 100644 src/views/report/deviceOeeAnalysis/index.vue create mode 100644 src/views/report/repairHoursStat/index.vue diff --git a/src/views/report/deviceFaultAnalysis/index.vue b/src/views/report/deviceFaultAnalysis/index.vue new file mode 100644 index 0000000..9ca9ddf --- /dev/null +++ b/src/views/report/deviceFaultAnalysis/index.vue @@ -0,0 +1,172 @@ + + + + + diff --git a/src/views/report/deviceOeeAnalysis/index.vue b/src/views/report/deviceOeeAnalysis/index.vue new file mode 100644 index 0000000..e1d32ef --- /dev/null +++ b/src/views/report/deviceOeeAnalysis/index.vue @@ -0,0 +1,195 @@ + + + + + diff --git a/src/views/report/repairHoursStat/index.vue b/src/views/report/repairHoursStat/index.vue new file mode 100644 index 0000000..7fad79b --- /dev/null +++ b/src/views/report/repairHoursStat/index.vue @@ -0,0 +1,161 @@ + + + + +