fix(acid): 优化实际性能组件中的钢种字段显示逻辑

- 移除了ORDER_QUALITY和order_quality字段的冗余处理
- 统一使用GRADE或grade字段作为钢种数据源
- 简化了模板中的条件渲染逻辑
This commit is contained in:
2026-07-04 15:34:48 +08:00
parent 0f054c189d
commit a3016a0f70

View File

@@ -26,7 +26,7 @@
<template slot-scope="{ row }">{{ row.CREW || row.crew || '—' }}</template> <template slot-scope="{ row }">{{ row.CREW || row.crew || '—' }}</template>
</el-table-column> </el-table-column>
<el-table-column label="钢种" min-width="80" show-overflow-tooltip> <el-table-column label="钢种" min-width="80" show-overflow-tooltip>
<template slot-scope="{ row }">{{ row.ORDER_QUALITY || row.order_quality || row.GRADE || row.grade || '—' }}</template> <template slot-scope="{ row }">{{ row.GRADE || row.grade || '—' }}</template>
</el-table-column> </el-table-column>
<el-table-column label="来料厚度" width="68" align="right"> <el-table-column label="来料厚度" width="68" align="right">
<template slot-scope="{ row }">{{ row.ENTRY_THICK || row.entry_thick || '—' }}</template> <template slot-scope="{ row }">{{ row.ENTRY_THICK || row.entry_thick || '—' }}</template>