feat(wms,cost): 新增多项功能并修复部分问题

1. 退火计划页面新增exclusiveStatus状态字段
2. 钢卷分步加工新增预览标签功能
3. 修复实际库位空值判断问题
4. 成本综合页面新增价格管理功能,支持配置指标单价
This commit is contained in:
2026-06-15 10:04:35 +08:00
parent 0968dcaded
commit 183e6d08d8
5 changed files with 68 additions and 13 deletions

View File

@@ -279,6 +279,7 @@ export default {
currentCoilNo: undefined,
status: 0,
dataType: 1,
exclusiveStatus: 0,
},
statusForm: {
planId: undefined,

View File

@@ -146,7 +146,7 @@
</el-table-column>
<el-table-column label="实际库位" align="center" width="220">
<template slot-scope="scope">
<span>{{ scope.row.coil.actualWarehouseName || '-' }}</span>
<span>{{ scope.row.coil && scope.row.coil.actualWarehouseName || '-' }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="100" prop="action">
@@ -257,6 +257,7 @@ export default {
currentCoilNo: undefined,
status: 0,
dataType: 1,
exclusiveStatus: 0,
},
statusForm: {
planId: undefined,
@@ -522,6 +523,7 @@ export default {
this.$message.success('已入炉');
},
handleUnbind(row) {
console.log(row);
this.$confirm('确定解绑该钢卷吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',