44 lines
524 B
Vue
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> |