Files
klp-oa/klp-ui/src/views/wms/coil/product.vue
砂糖 4cd365a843 feat(wms): 添加canExportAll属性控制导出按钮显示
添加canExportAll属性以控制批量导出按钮的显示,并调整标签打印的布局和边距
2026-01-09 17:16:19 +08:00

36 lines
639 B
Vue

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