Files
klp-oa/klp-ui/src/views/wms/coil/ship.vue
砂糖 2829e52f5b fix(wms): 修复钢卷选择器过滤条件并添加加载状态
为钢卷选择器添加状态过滤条件,并在报表页面添加加载状态指示器。同时注释掉ship.vue中不再使用的materialType字段。
2025-12-16 09:52:46 +08:00

28 lines
594 B
Vue

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