feat(wms): 新增钢卷异常管理功能

添加钢卷异常信息管理模块,包括异常记录、查询和展示功能
- 新增异常信息列表页面和详情页面
- 在钢卷管理页面添加异常数量显示和操作入口
- 实现异常信息的增删改查API接口
- 在领料页面添加异常标记和操作按钮
- 添加相关字典数据用于异常信息分类
This commit is contained in:
砂糖
2025-12-04 16:22:03 +08:00
parent 24b2381046
commit 01d8c87bc9
7 changed files with 558 additions and 12 deletions

View File

@@ -0,0 +1,27 @@
<template>
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" :showAbnormal="showAbnormal" :showControl="showControl" />
</template>
<script>
import BasePage from './panels/base.vue';
export default {
components: {
BasePage
},
data() {
return {
querys: {
dataType: 1,
// 筛选异常数量大于等于1的
minAbnormalCount: 1
},
labelType: '2',
qrcode: false,
hideType: false,
showAbnormal: true,
showControl: false,
}
}
}
</script>