36 lines
639 B
Vue
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> |