Files
klp-oa/klp-ui/src/views/wms/coil/product.vue

36 lines
639 B
Vue
Raw Normal View History

<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>