Files
xgy-oa/klp-ui/src/views/wms/coil/rubbish.vue
砂糖 66e852e985 refactor(wms): 统一物料类型字段并添加操作状态开关
- 将各页面中的itemType字段替换为materialType,使用中文显示物料类型
- 在actflow页面添加待操作状态切换开关
- 移除废弃的warehouseId字段
2025-11-11 15:04:12 +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: '3',
hideType: false,
}
}
}
</script>