Files
klp-oa/klp-ui/src/views/wms/coil/product.vue
砂糖 825a967f7b feat(钢卷管理): 添加长度字段支持及相关功能
refactor(订单管理): 重构订单状态显示及操作记录功能

fix(权限控制): 移除导出订单明细的权限校验

perf(钢卷操作): 使用策略模式重构钢卷操作逻辑
2025-12-29 16:22:18 +08:00

33 lines
578 B
Vue

<template>
<BasePage :qrcode="qrcode"
:querys="querys"
:labelType="labelType"
:showStatus="showStatus"
:hideType="hideType"
:showLength="showLength" />
</template>
<script>
import BasePage from './panels/base.vue';
export default {
components: {
BasePage
},
data() {
return {
qrcode: false,
querys: {
dataType: 1,
materialType: '成品',
itemType: 'product',
status: 0
},
labelType: '3',
showStatus: true,
hideType: true,
showLength: true,
}
}
}
</script>