2025-10-29 14:33:26 +08:00
|
|
|
<template>
|
2025-10-30 14:36:01 +08:00
|
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" />
|
2025-10-29 14:33:26 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import BasePage from './panels/base.vue';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
BasePage
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
qrcode: false,
|
|
|
|
|
querys: {
|
|
|
|
|
itemType: 'product'
|
2025-10-30 14:36:01 +08:00
|
|
|
},
|
|
|
|
|
labelType: '3'
|
2025-10-29 14:33:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|