Files
klp-oa/klp-ui/src/views/wms/coil/product.vue
砂糖 f79b69b4dd refactor(wms): 优化线圈管理页面查询条件和布局
- 统一原料和成品页面的itemType参数配置
- 调整基础面板的查询表单字段,移除不常用字段
- 优化表格操作按钮的布局和显示条件
- 清理冗余代码并格式化代码样式
2025-12-10 13:17:41 +08:00

27 lines
504 B
Vue

<template>
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :showStatus="showStatus" :hideType="hideType" />
</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,
}
}
}
</script>