g29修改参数曲线,修复跟踪逻辑
This commit is contained in:
@@ -53,22 +53,13 @@ export default {
|
|||||||
{ label: '带钢速度', value: 'stripSpeed' },
|
{ label: '带钢速度', value: 'stripSpeed' },
|
||||||
{ label: '1#开卷机张力', value: 'tensionPorBr1' },
|
{ label: '1#开卷机张力', value: 'tensionPorBr1' },
|
||||||
{ label: '2#开卷机张力', value: 'tensionPorBr2' },
|
{ label: '2#开卷机张力', value: 'tensionPorBr2' },
|
||||||
{ label: '清洗电压', value: 'cleaningVoltage' },
|
{ label: 'BR1-BR2张力', value: 'tensionBr1Br2' },
|
||||||
{ label: '清洗电流', value: 'cleaningCurrent' },
|
{ label: 'BR2-BR3张力', value: 'tensionBr2Br3' },
|
||||||
{ label: '碱液浓度', value: 'alkaliConcentration' },
|
{ label: '入口活套套量', value: 'celCapacity' },
|
||||||
{ label: '碱液温度', value: 'alkaliTemperature' },
|
{ label: '出口活套套量', value: 'cxlCapacity' },
|
||||||
{ label: '预热段出口板温', value: 'phfExitStripTemp' },
|
{ label: 'PH炉温度', value: 'phFurnaceTemperatureActual' },
|
||||||
{ label: '加热段出口板温', value: 'rtfExitStripTemp' },
|
{ label: 'NOF1炉温度', value: 'nof1FurnaceTemperatureActual' },
|
||||||
{ label: '冷却段出口板温', value: 'jcsExitStripTemp' },
|
{ label: 'NOF1炉控制输出', value: 'nof1FurnaceTemperatureControlOutput' }
|
||||||
{ label: '均热段出口板温', value: 'scsExitStripTemp' },
|
|
||||||
{ label: '锌锅温度', value: 'potTemperature' },
|
|
||||||
{ label: '锌锅功率', value: 'zincPotPower' },
|
|
||||||
{ label: '燃气消耗量', value: 'gasConsumption' },
|
|
||||||
{ label: '冷却塔带钢温度', value: 'coolingTowerStripTemp' },
|
|
||||||
{ label: '光整机张力', value: 'tensionBr5Tm' },
|
|
||||||
{ label: '光整机出口速度', value: 'stripSpeedTmExit' },
|
|
||||||
{ label: '拉矫机延伸率', value: 'tlElongation' },
|
|
||||||
{ label: '拉矫机张力', value: 'tensionTlBr7' }
|
|
||||||
],
|
],
|
||||||
treeProps: {
|
treeProps: {
|
||||||
children: 'children',
|
children: 'children',
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
<!-- 卡片网格布局 -->
|
<!-- 卡片网格布局 -->
|
||||||
<div v-loading="tableLoading">
|
<div v-loading="tableLoading">
|
||||||
<el-table :data="tableData" style="width: 100%" border stripe @row-click="handleRowClick" highlight-current-row height="300px">
|
<el-table :data="tableData" style="width: 100%" border stripe @row-click="handleRowClick" highlight-current-row>
|
||||||
<el-table-column prop="exitMatId" label="成品卷号"></el-table-column>
|
<el-table-column prop="exitMatId" label="成品卷号"></el-table-column>
|
||||||
<el-table-column prop="entryMatId" label="来料卷号"></el-table-column>
|
<el-table-column prop="entryMatId" label="来料卷号"></el-table-column>
|
||||||
<el-table-column prop="planNo" label="计划单号"></el-table-column>
|
<el-table-column prop="planNo" label="计划单号"></el-table-column>
|
||||||
|
|||||||
@@ -907,7 +907,7 @@ import { getDriveSetupValue, getFurnaceSetupValue } from '@/api/l2/setupValue'
|
|||||||
return this.buildSectionMetrics('COAT', [
|
return this.buildSectionMetrics('COAT', [
|
||||||
'stripSpeedTmExit', 'avrCoatingWeightTop', 'avrCoatingWeightBottom',
|
'stripSpeedTmExit', 'avrCoatingWeightTop', 'avrCoatingWeightBottom',
|
||||||
'tmElongation', 'tlElongation', 'tensionBr6toBr7Br8', 'tensionBr8Tm',
|
'tmElongation', 'tlElongation', 'tensionBr6toBr7Br8', 'tensionBr8Tm',
|
||||||
'tensionTmBr9', 'tlElongation'])
|
'tensionTmBr9'])
|
||||||
},
|
},
|
||||||
exitSectionMetrics() {
|
exitSectionMetrics() {
|
||||||
return this.buildSectionMetrics('EXIT', ['speedExitSection', 'coilLength', 'cxlLength', 'cxlCapacity', 'tensionBr9Tr'])
|
return this.buildSectionMetrics('EXIT', ['speedExitSection', 'coilLength', 'cxlLength', 'cxlCapacity', 'tensionBr9Tr'])
|
||||||
@@ -1310,14 +1310,14 @@ import { getDriveSetupValue, getFurnaceSetupValue } from '@/api/l2/setupValue'
|
|||||||
title: '甩尾操作提示',
|
title: '甩尾操作提示',
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
duration: 5000,
|
duration: 5000,
|
||||||
needAlert: true
|
needAlert: false
|
||||||
},
|
},
|
||||||
THROW_TAIL: {
|
THROW_TAIL: {
|
||||||
icon: '⚠️',
|
icon: '⚠️',
|
||||||
title: '甩尾操作提示',
|
title: '甩尾操作提示',
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
duration: 5000,
|
duration: 5000,
|
||||||
needAlert: true
|
needAlert: false
|
||||||
},
|
},
|
||||||
ALL_RETURN: {
|
ALL_RETURN: {
|
||||||
icon: '↩️',
|
icon: '↩️',
|
||||||
|
|||||||
Reference in New Issue
Block a user