feat(排产单): 新增排产单追踪页面和钢卷列表查询功能

- 添加排产单追踪页面,展示排产单详情和对应钢卷信息
- 新增listPlanCoils接口用于查询排产单对应的钢卷列表
- 在PlanSheetList组件中添加readonly属性控制操作按钮显示
- 优化CoilTable组件中钢卷号的列名显示
This commit is contained in:
2026-04-27 18:36:23 +08:00
parent b85971d532
commit 5b38ef734a
4 changed files with 541 additions and 7 deletions

View File

@@ -6,12 +6,12 @@
<span><strong>总净重{{ totalNetWeight }} kg</strong></span>
</div>
<KLPTable :data="data" :floatLayer="true" :floatLayerConfig="floatLayerConfig" :height="tableHeight">
<el-table-column label="入场卷号" align="center" prop="enterCoilNo">
<el-table-column label="入场卷号" align="center" prop="enterCoilNo">
<template slot-scope="scope">
<coil-no :coil-no="scope.row.enterCoilNo"></coil-no>
</template>
</el-table-column>
<el-table-column label="当前卷号" align="center" prop="currentCoilNo">
<el-table-column label="当前卷号" align="center" prop="currentCoilNo">
<template slot-scope="scope">
<current-coil-no :current-coil-no="scope.row.currentCoilNo"></current-coil-no>
</template>
@@ -113,8 +113,8 @@ export default {
return {
floatLayerConfig: {
columns: [
{ label: '入场卷号', prop: 'enterCoilNo' },
{ label: '当前卷号', prop: 'currentCoilNo' },
{ label: '入场卷号', prop: 'enterCoilNo' },
{ label: '当前卷号', prop: 'currentCoilNo' },
{ label: '厂家卷号', prop: 'supplierCoilNo' },
{ label: '逻辑库位', prop: 'warehouseName' },
{ label: '实际库位', prop: 'actualWarehouseName' },