Files
klp-oa/klp-ui/src/views/wms/coil/rubbish.vue
砂糖 adbf0619b3 feat(成品管理): 添加成品相关表格列并调整标签类型
为成品物料添加质量状态、切边要求等表格列,同时将rubbish.vue中的labelType从3改为2
2025-11-14 10:11:47 +08:00

27 lines
542 B
Vue

<template>
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery" :hideType="hideType" />
</template>
<script>
import BasePage from './panels/base.vue';
export default {
components: {
BasePage
},
data() {
return {
qrcode: false,
querys: {
// itemType: 'rubbish',
dataType: 1,
materialType: '废品'
// warehouseId: 111,
},
hideWarehouseQuery: true,
labelType: '2',
hideType: false,
}
}
}
</script>