2025-10-28 19:01:57 +08:00
|
|
|
<template>
|
2025-10-29 14:33:26 +08:00
|
|
|
<BasePage :qrcode="qrcode" :querys="querys"/>
|
2025-10-28 19:01:57 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-10-29 14:33:26 +08:00
|
|
|
import BasePage from './panels/base.vue';
|
2025-10-28 19:01:57 +08:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
2025-10-29 14:33:26 +08:00
|
|
|
BasePage
|
2025-10-28 19:01:57 +08:00
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2025-10-29 14:33:26 +08:00
|
|
|
qrcode: true,
|
|
|
|
|
querys: {
|
|
|
|
|
dataType: 1
|
2025-10-28 19:01:57 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-10-29 14:33:26 +08:00
|
|
|
}
|
|
|
|
|
</script>
|