feat(wms/coil): 新增钢卷异常管理相关页面与功能

1. 新增钢卷异常列表基础页、明细页、钢卷维度异常页和继承扩展页
2. 在异常管理表格中新增继承来源列
3. 完善异常增删改查、判级以及继承功能
This commit is contained in:
2026-06-04 13:36:01 +08:00
parent ff139759d4
commit c71dfe3ff2
5 changed files with 1040 additions and 0 deletions

View File

@@ -82,6 +82,13 @@
</div>
</template>
</el-table-column>
<el-table-column label="继承来源" prop="processSource" width="110">
<template slot-scope="scope">
<el-tag v-if="scope.row.processSource" type="warning" size="mini">
{{ scope.row.processSource }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="主缺陷" prop="mainMark" width="60">
<template slot-scope="scope">
<el-checkbox v-model="scope.row.mainMark" :true-label="1" :false-label="0"></el-checkbox>