26 lines
464 B
Vue
26 lines
464 B
Vue
<template>
|
|
<BasePage
|
|
:leftWarehouseQuery="true"
|
|
:qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" :showControl="showControl" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: true,
|
|
querys: {
|
|
dataType: 0,
|
|
},
|
|
showControl: true,
|
|
labelType: '2',
|
|
hideType: false
|
|
}
|
|
}
|
|
}
|
|
</script> |