From 7038b996b2074c1783c88203ec0788706a199aa0 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Tue, 21 Jul 2026 11:14:45 +0800 Subject: [PATCH] =?UTF-8?q?2026-07-21=20=E5=BC=82=E5=B8=B8=E8=A7=84?= =?UTF-8?q?=E5=88=99=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/yieldReport/com_separate_roll.vue | 41 ++++++++++++++++++- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/src/views/modules/yieldReport/com_separate_roll.vue b/src/views/modules/yieldReport/com_separate_roll.vue index 56b5929..bd687e9 100644 --- a/src/views/modules/yieldReport/com_separate_roll.vue +++ b/src/views/modules/yieldReport/com_separate_roll.vue @@ -254,9 +254,12 @@ 锁定时间 / LOCKED AT {{ getExceptionRuleLockedTimeText() }} -
+
工单编号 / WORK ORDER - {{ getExceptionRuleWorkOrderText() }} +
+ {{ getExceptionRuleWorkOrderText() }} + {{ getExceptionRuleSeqNoText() }} +
@@ -1960,6 +1963,10 @@ export default { return this.scheduleData.orderNo || '--' }, + getExceptionRuleSeqNoText () { + return this.scheduleData.seqNo || '--' + }, + formatExceptionRuleDefectRateText () { const text = this.formatRuleNumber(this.exceptionRuleMatchedDefectRate, 2) return text === '--' ? '--' : `${text}%` @@ -3044,6 +3051,36 @@ export default { animation: exception-rule-glow-breathe 1.5s ease-in-out infinite; } +.exception-rule-info-card.work-order-card .work-order-value-line { + display: flex; + align-items: flex-end; + justify-content: space-between; + gap: 10px; + width: 100%; +} + +.exception-rule-info-card.work-order-card .work-order-value-line .value { + flex: 1; + min-width: 0; + text-align: left; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.exception-rule-info-card.work-order-card .work-order-seq { + display: inline-block; + min-width: 5ch; + text-align: right; + white-space: nowrap; + font-family: 'Barlow Condensed', sans-serif; + font-size: 20px; + line-height: 1.15; + font-weight: 700; + letter-spacing: 0.02em; + color: #dde3e8; +} + .exception-rule-flow-steps { display: flex; align-items: center;