feat(wms/coil): 新增按名称查询钢卷功能并优化产品信息展示
添加镀锌卷、热轧卷、冷轧卷、冷硬卷的按名称查询页面组件 在产品信息和原材料信息展示中增加镀层信息显示 移除base.vue中未使用的BomInfoMini组件 优化DrillDownTable.vue的代码结构 新增ByName.vue作为通用查询面板
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
<!-- 触发元素(原产品名称文本) -->
|
||||
<span slot="reference" class="product-name">
|
||||
<slot name="default" :product="productFull">
|
||||
{{ productFull.productName || '未知' }}[{{ productFull.specification || '无规格' }}]({{ productFull.material || '无材质' }})-{{ productFull.manufacturer || '无厂家' }}
|
||||
{{ productFull.productName || '未知' }}[{{ productFull.specification || '无规格' }}]({{ productFull.material || '无材质' }})-{{ productFull.manufacturer || '无厂家' }}-{{ productFull.zincLayer || '无镀层' }}
|
||||
</slot>
|
||||
</span>
|
||||
</el-popover>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<!-- 触发元素(原材料名称文本) -->
|
||||
<span slot="reference" class="material-name">
|
||||
<slot name="default" :material="materialFull">
|
||||
{{ materialFull.rawMaterialName || '未知' }}[{{ materialFull.specification || '无规格' }}]({{ materialFull.material || '无材质' }})-{{ materialFull.manufacturer || '无厂家' }}
|
||||
{{ materialFull.rawMaterialName || '未知' }}[{{ materialFull.specification || '无规格' }}]({{ materialFull.material || '无材质' }})-{{ materialFull.manufacturer || '无厂家' }}-{{ materialFull.zincLayer || '无镀层' }}
|
||||
</slot>
|
||||
</span>
|
||||
</el-popover>
|
||||
|
||||
Reference in New Issue
Block a user