feat(标签打印): 增加镀锌原料标签类型并优化标签选择逻辑

- 在LabelRender组件中新增类型5的标签尺寸配置
- 修改ZincRawTag组件中下工序默认值为'镀锌卷'
- 在do.vue中新增标签尺寸映射并实现根据物料类型和仓库自动选择标签类型
This commit is contained in:
砂糖
2026-03-09 13:24:16 +08:00
parent a2b90f3b72
commit f389576c92
3 changed files with 47 additions and 6 deletions

View File

@@ -31,7 +31,7 @@
</div>
<div class="grid-cell label-cell">下工序</div>
<div class="grid-cell value-cell">
<div class="nob" contenteditable>{{ content.nextProcess || '冷硬卷' }}</div>
<div class="nob" contenteditable>{{ content.nextProcess || '镀锌卷' }}</div>
</div>
<!-- 第四行包装要求切边要求 -->

View File

@@ -91,6 +91,10 @@ export default {
width: 100,
height: 80,
},
'5': {
width: 180,
height: 100,
},
}
}
},