25 lines
465 B
Vue
25 lines
465 B
Vue
|
|
<template>
|
||
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery" />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import BasePage from './panels/base.vue';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
BasePage
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
qrcode: false,
|
||
|
|
querys: {
|
||
|
|
// itemType: 'rubbish',
|
||
|
|
// dataType: 2
|
||
|
|
warehouseId: 111,
|
||
|
|
},
|
||
|
|
hideWarehouseQuery: true,
|
||
|
|
labelType: '3'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|