feat(标签打印): 统一标签字体样式并增强镀锌分步加工功能

- 为所有标签组件添加统一的粗体黑体字体样式
- 修改getGalvanize1TypingPrefill方法参数以支持分页查询
- 在分步加工面板中增加镀锌二级数据展示功能
- 优化分步加工逻辑,支持根据actionType动态加载数据
This commit is contained in:
砂糖
2026-03-21 10:10:21 +08:00
parent 4478921d9b
commit 0c86b80fb2
11 changed files with 105 additions and 21 deletions

View File

@@ -434,10 +434,14 @@ export default {
.nob {
width: 100%;
height: 100%;
font-weight: bold;
color: #000;
font-family: '黑体', serif;
border: none;
outline: none;
background: transparent;
text-align: center;
font-size: 1.2em;
}
/* 打印样式 - 强制单页适配180mm x 100mm纸张保持原有样式不变 */

View File

@@ -102,7 +102,7 @@
<!-- 第八行生产日期跨3列 -->
<div class="info-grid-item label-cell">生产日期</div>
<div class="info-grid-item value-cell">
<div>{{ parseTime(content.updateTime, '{y}-{m}-{d}') }}</div>
<div class="nob">{{ parseTime(content.updateTime, '{y}-{m}-{d}') }}</div>
<!-- <input type="text" class="nob" :value=" /> -->
</div>
</div>
@@ -437,8 +437,12 @@ export default {
height: 100%;
border: none;
outline: none;
font-weight: bold;
color: #000;
font-family: '黑体', serif;
background: transparent;
text-align: center;
font-size: 1.2em;
}
/* 打印样式 - 强制单页适配180mm x 100mm纸张保持原有样式不变 */

View File

@@ -333,6 +333,9 @@ export default {
.nob {
width: 100%;
height: 100%;
font-weight: bold;
color: #000;
font-family: '黑体', serif;
border: none;
outline: none;
background: transparent;

View File

@@ -392,7 +392,7 @@ export default {
.info-grid-item {
border: 1px solid #000;
padding: 0.1em;
font-size: 1.05em;
font-size: 1.2em;
height: 2em;
text-align: center;
vertical-align: middle;
@@ -443,8 +443,12 @@ export default {
height: 100%;
border: none;
outline: none;
font-weight: bold;
color: #000;
font-family: '黑体', serif;
background: transparent;
text-align: center;
font-size: 1.2em;
}
/* 打印样式 - 强制单页适配180mm x 100mm纸张保持原有样式不变 */

View File

@@ -253,6 +253,10 @@ export default {
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: #000;
font-family: '黑体', serif;
font-size: 1.2em;
}
/* 打印样式 */

View File

@@ -246,6 +246,10 @@ export default {
word-break: break-all;
overflow-wrap: break-word;
white-space: normal;
font-weight: bold;
color: #000;
font-family: '黑体', serif;
font-size: 1.2em;
}
/* 打印样式 - 强制单页适配100mm x 80mm纸张保持原有样式不变 */

View File

@@ -244,6 +244,7 @@ export default {
.nob {
width: 100%;
height: 100%;
font-size: 1.2em;
border: none;
outline: none;
background: transparent;
@@ -253,6 +254,10 @@ export default {
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: #000;
font-family: '黑体', serif;
font-size: 1.2em;
}
/* 打印样式 */