emis-app/pages/print/bluetoothPrinter.vue
2024-06-23 21:18:03 +08:00

44 lines
524 B
Vue

<template>
<tpx-page>
<tpx-bluetooth-print show="!pageLoading"
:imageUrl="queryOption.imageUrl"
></tpx-bluetooth-print>
</tpx-page>
</template>
<script>
export default {
computed: {
},
data () {
return {
pageLoading: true,
queryOption: {
imageUrl: '',
}
}
},
mounted () {
},
unmounted() {
},
onLoad(option) {
this.queryOption = option
this.initData();
},
methods: {
initData(){
this.pageLoading = false
},
}
}
</script>
<style scoped lang="scss">
</style>