2025-10-29 14:33:26 +08:00
|
|
|
<template>
|
2026-01-16 10:49:23 +08:00
|
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" :showControl="showControl" />
|
2025-10-29 14:33:26 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import BasePage from './panels/base.vue';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
BasePage
|
|
|
|
|
},
|
2026-01-16 10:49:23 +08:00
|
|
|
data() {
|
2025-10-29 14:33:26 +08:00
|
|
|
return {
|
2025-10-30 14:36:01 +08:00
|
|
|
qrcode: true,
|
2025-10-29 14:33:26 +08:00
|
|
|
querys: {
|
2025-10-31 11:52:45 +08:00
|
|
|
dataType: 0,
|
2025-10-30 14:36:01 +08:00
|
|
|
},
|
2026-01-16 13:07:30 +08:00
|
|
|
showControl: true,
|
2025-11-01 13:19:12 +08:00
|
|
|
labelType: '2',
|
|
|
|
|
hideType: false
|
2025-10-29 14:33:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|