Files
klp-oa/klp-ui/src/views/wms/coil/where.vue
砂糖 e76799f4e0 feat(coil): 添加钢卷加工流程图组件并优化界面
- 新增ProcessFlow组件展示钢卷加工流程
- 在base面板中添加流程图显示开关
- 调整DragResizeBox的z-index确保显示层级
- 修复部分样式问题和代码格式
- 更新字典项从warehouse_sync改为wms_next_warehouse
2026-03-24 10:51:09 +08:00

41 lines
817 B
Vue

<template>
<BasePage
:editNext="editNext"
:qrcode="qrcode"
:querys="querys"
:labelType="labelType"
:hideWarehouseQuery="hideWarehouseQuery"
:forceSpecialTag="forceSpecialTag"
:showControl="showControl"
:showAbnormal="showAbnormal"
:hideType="hideType"></BasePage>
</template>
<script>
import BasePage from './panels/base.vue';
export default {
components: {
BasePage
},
data() {
return {
qrcode: false,
querys: {
dataType: 1,
status: 0,
// OnlyScrap: true,
// materialType: '废品'
},
// 强制使用特殊标签
forceSpecialTag: 'where',
editNext: true,
hideWarehouseQuery: true,
labelType: '2',
hideType: false,
showControl: false,
showAbnormal: false,
}
}
}
</script>