emis-app/pages/print/bluetoothPrinter.vue
2024-05-12 20:49:00 +08:00

45 lines
579 B
Vue

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