feat(报表): 新增综合报表模板及M卷统计功能

新增综合报表模板,支持按不同仓库类型展示统计信息。添加M卷处理功能,在统计中自动过滤并计算M卷数据。优化报表展示顺序,默认显示产出钢卷。修复异常率计算问题,完善统计信息展示。

新增仓库特定报表页面,包括镀铬、拉矫、脱脂、双机架、镀锌和酸连轧成品库报表。调整KLPTable组件支持高度设置,优化基础面板显示逻辑。

修复API请求超时问题,统一设置超时时间为10分钟。调整标签显示文本,优化用户体验。
This commit is contained in:
砂糖
2026-03-20 13:34:56 +08:00
parent 076b0e8e24
commit d6e30d4d50
21 changed files with 1032 additions and 42 deletions

View File

@@ -9,7 +9,7 @@
<div class="el-table-container" ref="elTableWrapper" @mouseleave="handleTableLeave">
<!-- 原生 Table 核心透传 props/事件/插槽 -->
<el-table :ref="tableRef" v-bind="$attrs" v-on="$listeners" :class="['my-table', customClass]"
@cell-mouse-enter="handleCellEnter" @row-mouseleave="handleRowLeave">
@cell-mouse-enter="handleCellEnter" @row-mouseleave="handleRowLeave" :height="height">
<!-- 2. 透传原生内置插槽 empty 空数据插槽append 底部插槽等 -->
<template v-slot:empty="scope">
<slot name="empty" v-bind="scope"></slot>
@@ -80,6 +80,10 @@ export default {
columns: [],
title: '详细信息'
})
},
height: {
type: String,
default: ''
}
},
data() {

View File

@@ -20,7 +20,7 @@ export default {
},
showNowButton: {
type: Boolean,
default: false
default: true
}
},
data() {