25 lines
441 B
Vue
25 lines
441 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: true,
|
|
querys: {
|
|
dataType: 1,
|
|
// itemType: 'raw_material'
|
|
materialType: '原料'
|
|
},
|
|
labelType: '2',
|
|
hideType: true
|
|
}
|
|
}
|
|
}
|
|
</script> |