26 lines
589 B
Vue
26 lines
589 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery" :hideType="hideType" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
dataType: 1,
|
|
warehouseIds: '1988150150521090049,1988150487185289217,1988150750390448129,1988150971895836674',
|
|
// materialType: '废品'
|
|
},
|
|
hideWarehouseQuery: true,
|
|
labelType: '2',
|
|
hideType: false,
|
|
}
|
|
}
|
|
}
|
|
</script> |