feat: 新增酸轧系统实时跟踪和实绩功能
- 添加实时跟踪页面,支持查询Gauge和Shape数据 - 新增实绩页面,展示钢卷生产数据和工艺图表 - 优化钢卷追踪结果展示,增加创建步骤卷号显示 - 调整酸轧系统菜单结构,新增"实绩"和"实时"选项 - 扩展工艺图表展示,增加开卷机、温度等参数 - 修改计划列表分页大小为10 - 移除无用代码和注释
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
</el-menu-item>
|
||||
<el-menu-item index="processing">
|
||||
<i class="el-icon-s-operation"></i>
|
||||
<span slot="title">加工</span>
|
||||
<span slot="title">WIP</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="report">
|
||||
<i class="el-icon-document"></i>
|
||||
@@ -26,9 +26,17 @@
|
||||
<i class="el-icon-warning-outline"></i>
|
||||
<span slot="title">品质</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="performance">
|
||||
<i class="el-icon-coin"></i>
|
||||
<span slot="title">实绩</span>
|
||||
</el-menu-item>
|
||||
<!-- <el-menu-item index="realTime">
|
||||
<i class="el-icon-time"></i>
|
||||
<span slot="title">实时</span>
|
||||
</el-menu-item> -->
|
||||
</el-menu>
|
||||
</div>
|
||||
<div>
|
||||
<div style="flex: 1;">
|
||||
<component :is="currentComponent" />
|
||||
</div>
|
||||
</div>
|
||||
@@ -40,6 +48,8 @@ import Processing from './components/Processing.vue';
|
||||
import Report from './components/Report.vue';
|
||||
import Shipping from './components/Shipping.vue';
|
||||
import Quality from './components/Quality.vue';
|
||||
import Performance from './components/Performance.vue';
|
||||
import RealTime from './components/RealTime.vue';
|
||||
|
||||
export default {
|
||||
name: 'AcidSystem',
|
||||
@@ -49,6 +59,8 @@ export default {
|
||||
Report,
|
||||
Shipping,
|
||||
Quality,
|
||||
Performance,
|
||||
RealTime
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
@@ -63,6 +75,8 @@ export default {
|
||||
report: 'Report',
|
||||
shipping: 'Shipping',
|
||||
quality: 'Quality',
|
||||
performance: 'Performance',
|
||||
realTime: 'RealTime',
|
||||
};
|
||||
return componentMap[this.activeMenu];
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user