新增综合报表模板,支持按不同仓库类型展示统计信息。添加M卷处理功能,在统计中自动过滤并计算M卷数据。优化报表展示顺序,默认显示产出钢卷。修复异常率计算问题,完善统计信息展示。 新增仓库特定报表页面,包括镀铬、拉矫、脱脂、双机架、镀锌和酸连轧成品库报表。调整KLPTable组件支持高度设置,优化基础面板显示逻辑。 修复API请求超时问题,统一设置超时时间为10分钟。调整标签显示文本,优化用户体验。
28 lines
593 B
Vue
28 lines
593 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" :showAbnormal="showAbnormal" :showControl="showControl" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
querys: {
|
|
dataType: 1,
|
|
orderByAbnormal: true,
|
|
// 筛选异常数量大于等于1的
|
|
// minAbnormalCount: 1
|
|
},
|
|
labelType: '2',
|
|
qrcode: false,
|
|
hideType: false,
|
|
showAbnormal: true,
|
|
showControl: false,
|
|
}
|
|
}
|
|
}
|
|
</script> |