This commit is contained in:
2026-06-03 16:31:54 +08:00
12 changed files with 101 additions and 5 deletions

View File

@@ -268,7 +268,7 @@ const TREND_GROUPS = [
const GAUGE_COLS = [
{ col: 'THICK0', title: '入口测厚仪 [%]' },
{ col: 'THICK1', title: '1架出口厚度 [%]' },
{ col: 'THICK4', title: '末架出口厚度 [%]' },
{ col: 'THICK5', title: '末架出口厚度 [%]' },
{ col: 'EXIT_SPEED', title: '轧制速度 [m/min]' }
]

View File

@@ -255,7 +255,7 @@ export default {
if (!target) return '—'
const total = this.gaugeRows.length
const pass = this.gaugeRows.filter(r => {
const v = getRowVal(r, 'THICK4') || getRowVal(r, 'THICK1')
const v = getRowVal(r, 'THICK5') || getRowVal(r, 'THICK1')
if (v == null) return true
const dev = v - target
return dev <= posLim && dev >= -negLim
@@ -404,9 +404,9 @@ export default {
}
}
// THICK4 末架出口
const t4 = colData(rows, 'THICK4')
const t4Ref = colData(rows, 'THICK4REF')
// THICK5 末架出口
const t4 = colData(rows, 'THICK5')
const t4Ref = colData(rows, 'THICK5REF')
if (t4.some(v => v != null)) {
const c = this.initChart('chartThick4', 180)
if (c) {