emis-app/components/tpx-bluetooth-print/render-template-native.vue

181 lines
5.1 KiB
Vue
Raw Normal View History

2024-05-14 17:00:36 +00:00
<template>
<tpx-bluetooth-native ref="curBlueTooth">
<template v-slot:button>
2024-06-23 07:56:29 +00:00
<u-button @click="handlePrint" type="primary">打印</u-button>
2024-05-14 17:00:36 +00:00
</template>
<template v-slot:content>
<view class="canvas-con">
<canvas :canvas-id="canvasId" :style="{width:canvasWidth + 'px', height: canvasHeight + 'px'}"></canvas>
</view>
</template>
</tpx-bluetooth-native>
<tpx-dialog type="type-dialog" title="打印中" :show="percentage">
<u-row custom-style="width: 500rpx;min-height: 150rpx;padding: 10rpx;">
<view>
<u-line-progress :percentage="percentage" activeColor="#B12D29" height="30"></u-line-progress>
2024-06-23 13:13:25 +00:00
<view class="pt-20">正在发送数据, 请勿退出页面, 如果卡住了请重连打印机重试</view>
2024-05-14 17:00:36 +00:00
</view>
</u-row>
</tpx-dialog>
</template>
<script>
import { showLoading, showToast, hideLoading, canvasGetImageData, getImageInfo, promiseTimeout } from "@/common/untool"
import * as canvasUtil from "@/common/canvasUtil"
2024-06-23 02:54:24 +00:00
import tanexPrinterUniSdk from './nativePrint/tanexPrinterUniSdk'
import printModule from './nativePrint/print'
2024-06-23 07:32:32 +00:00
import dayjs from "dayjs"
2024-05-14 17:00:36 +00:00
export default {
props:{
},
computed: {
},
data () {
return {
canvasId: uni.$u.guid(20),
canvasWidth: 1,
canvasHeight: 1,
imgData: '',
percentage: 0, // 打印进度
imageUrl: '',
2024-06-23 13:22:48 +00:00
paperWidth: 480,
2024-05-14 17:00:36 +00:00
}
},
mounted () {
this.initData()
},
unmounted() {
},
methods: {
async initData() {
2024-06-23 07:32:32 +00:00
this.imageUrl && await this.renderCanvasImg(this.imageUrl);
2024-05-14 17:00:36 +00:00
},
// 打印
handlePrint(){
const that = this
return new Promise(async (resolve, reject)=> {
2024-06-06 17:21:48 +00:00
let { bl, deviceId } = that.checkPrintParam()
2024-05-14 17:00:36 +00:00
if(!bl) {
return reject('打印参数校验不通过')
}
2024-06-06 17:21:48 +00:00
let prtInstance = tanexPrinterUniSdk.createInstance()
prtInstance.init(that.canvasHeight)
2024-06-22 17:06:21 +00:00
prtInstance.diyCode(`PAGE-WIDTH 600\r\n`)
2024-06-22 17:40:04 +00:00
prtInstance.addBitmapByEG(0, 0, that.imgData)
2024-06-06 17:21:48 +00:00
prtInstance.setPagePrint()
let commond = prtInstance.getPrintCmd()
2024-06-22 17:06:21 +00:00
console.log("打印命令组装完成,开始打印=====", commond)
2024-06-23 02:54:24 +00:00
printModule.print(commond)
2024-06-23 13:13:25 +00:00
await that.loadPrintProcess()
2024-06-21 16:11:54 +00:00
// printModule.printTestSimple(deviceId)
2024-05-14 17:00:36 +00:00
})
},
2024-06-23 13:13:25 +00:00
// 模拟打印进度, 用于加载进度条
async loadPrintProcess(){
let that = this
this.percentage = 0
let addLen = 10
for(let i=0; i<100; i = i + addLen) {
await new Promise((resolve)=> {
setTimeout(()=> {
that.percentage = i
resolve()
}, 3000/addLen)
})
}
that.percentage = 0
that.showToast('数据发送完毕')
},
2024-05-14 17:00:36 +00:00
renderCanvasImg(filePath) {
let that = this
showLoading()
console.log("===renderCanvasImg:filePath=====", filePath)
return new Promise(async (resolve, reject)=> {
try{
let res = await getImageInfo(filePath)
2024-06-23 07:32:32 +00:00
console.log("getImageInfo res====", res)
2024-05-14 17:00:36 +00:00
const ctx = uni.createCanvasContext(that.canvasId, that);
// 打印宽度须是8的整数倍,这里处理掉多余的,使得宽度合适,不然有可能乱码
const remainder = that.paperWidth % 8;
const w = remainder === 0 ? that.paperWidth : that.paperWidth - remainder;
// 等比算出图片的高度
const h = Math.floor((res.height * w) / res.width);
that.canvasWidth = w
that.canvasHeight = h
// 在canvas 画一张图片
let imgRect = canvasUtil.containImg(0, 0, w, h, res.width, res.height)
let ctData = [imgRect.dx, imgRect.dy, imgRect.dWidth, imgRect.dHeight]
ctx.fillStyle = 'rgba(255,255,255,1)';
ctx.clearRect(...ctData);
ctx.fillRect(...ctData);
// 把原图缩放到 打印宽度的比例 绘制
ctx.drawImage(filePath, ...ctData);
ctx.draw(false, async() => {
2024-06-23 07:32:32 +00:00
// await promiseTimeout(1000)
2024-06-06 17:21:48 +00:00
let imgData = await canvasGetImageData({ canvasId: that.canvasId, width: w, height: h, })
2024-05-14 17:00:36 +00:00
hideLoading()
2024-06-06 17:21:48 +00:00
that.imgData = imgData
2024-06-23 07:32:32 +00:00
console.log("canvasGetImageData imgData.data.length =====", imgData.data.length)
// 多次渲染,createCanvasContext,必须使用新的才可以
that.canvasId = uni.$u.guid(20)
2024-06-21 15:23:50 +00:00
resolve()
2024-05-14 17:00:36 +00:00
});
}catch(e){
2024-06-23 07:32:32 +00:00
// 多次渲染,createCanvasContext,必须使用新的才可以
that.canvasId = uni.$u.guid(20)
2024-05-14 17:00:36 +00:00
hideLoading()
reject(e)
}
})
},
checkPrintParam() {
let msg = '', bl = false
2024-06-23 08:19:00 +00:00
let { deviceId, isStateOn } = this.$refs.curBlueTooth.getConData()
2024-05-14 17:00:36 +00:00
!this.imgData && (msg = '打印内容不能为空,请重试')
2024-06-23 08:19:00 +00:00
if(!msg && !(deviceId && isStateOn)) {
msg = '未连接打印设备'
2024-05-14 17:00:36 +00:00
}
msg && (showToast(msg))
return {
2024-06-06 17:21:48 +00:00
deviceId,
2024-05-14 17:00:36 +00:00
msg,
bl: !msg
}
},
// 给外部调用api,打印自定义图
async callPrint({ paperWidth, imageUrl } = {}) {
try{
this.paperWidth = paperWidth
if(this.imageUrl != imageUrl || !this.imgData) {
this.imageUrl = imageUrl
await this.renderCanvasImg(this.imageUrl);
}
let conSta = await this.$refs.curBlueTooth.autoConnect()
if(conSta) {
2024-06-23 07:56:29 +00:00
await this.handlePrint()
2024-05-14 17:00:36 +00:00
return true
}
} catch(e){
}
}
}
}
</script>
<style scoped lang="scss">
.canvas-con{
width: 100%;
}
/*图片隐藏到窗口外*/
canvas {
2024-06-23 04:09:19 +00:00
position: absolute;
z-index: -999;
top: -999px;
2024-05-14 17:00:36 +00:00
}
</style>