fix(wms): 修复标签渲染和钢卷号校验问题
修复标签渲染组件立即执行监听的问题 移除批量打印中多余的labelType属性 暂时禁用钢卷号必须为8位数字的校验
This commit is contained in:
@@ -91,7 +91,8 @@ export default {
|
||||
this.labelType = '3';
|
||||
}
|
||||
},
|
||||
deep: true
|
||||
deep: true,
|
||||
immediate: true,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
@@ -292,7 +292,7 @@
|
||||
<!-- 渲染容器:屏幕隐藏,仅用于截图生成PDF -->
|
||||
<div ref="batchPdfContainer" class="batch-pdf-root" aria-hidden="true">
|
||||
<div v-for="(item, idx) in batchPrint.list" :key="item.coilId || idx" class="batch-pdf-page">
|
||||
<label-render :content="item" :labelType="labelType" :hideActions="true" />
|
||||
<label-render :content="item" :hideActions="true" />
|
||||
</div>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
||||
Reference in New Issue
Block a user