Files
klp-oa/klp-ui/src/views/wms/packing/coil.vue
砂糖 396f861882 feat(打包模块): 新增打包单据功能及相关组件
refactor(CoilSelector): 修改change事件返回参数包含完整钢卷信息

chore: 添加打包模块相关图标和API文件

test: 添加打包模块单元测试

docs: 更新打包模块API文档
2026-03-24 09:16:22 +08:00

29 lines
655 B
Vue

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