添加打印机
This commit is contained in:
@@ -12,7 +12,27 @@
|
||||
</view>
|
||||
<view class="content_boxt_towrelative" style="242px;height: 242px;">
|
||||
<canvas id="qrcode" style="242px;height: 242px;" ref="qrcode" canvas-id="qrcode"></canvas>
|
||||
<image class="content_boxt_towabsolute" src="@/static/icons.png" mode=""></image>
|
||||
<!-- <image class="content_boxt_towabsolute" src="@/static/icons.png" mode=""></image> -->
|
||||
</view>
|
||||
<view class="" id="viewtext" ref="viewtext">
|
||||
<div style="width: 100%;font-size: 12px; ">
|
||||
销售方名称:任公司任公司任公司任公司任公司任公司任公司任公司任公司
|
||||
</div>
|
||||
<!-- <div style="width: 100%;font-size: 12px; margin-top: 10rpx;">
|
||||
企业联系电话:18092145635
|
||||
</div> -->
|
||||
<div style="width: 100%;font-size: 12px; margin-top: 10rpx;">
|
||||
开票金额:1135.42
|
||||
</div>
|
||||
<!-- <div style="width: 100%;font-size: 12px;margin-top: 10rpx;">
|
||||
订单号:1775391602999693313
|
||||
</div> -->
|
||||
<div style="width: 100%;font-size: 12px;margin-top: 10rpx;">
|
||||
生成时间:2024-04-03 13:15:17
|
||||
</div>
|
||||
<div style="width: 100%;font-size: 12px;margin-top: 10rpx;">
|
||||
二维码有效期:30天
|
||||
</div>
|
||||
</view>
|
||||
<button @click="print">打印</button>
|
||||
</view>
|
||||
@@ -20,6 +40,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import getLodop from '@/common/js/LodopFuncs.js'
|
||||
import uQRCode from '@/uni_modules/Sansnn-uQRCode/js_sdk/uqrcode/uqrcode.js'; // npm install uqrcodejs
|
||||
export default {
|
||||
data() {
|
||||
@@ -43,21 +64,33 @@
|
||||
},
|
||||
methods: {
|
||||
print() {
|
||||
// const receipt = document.getElementById('receipt');
|
||||
// const printWindow = window.open('', '_blank');
|
||||
// printWindow.document.write(receipt.innerHTML);
|
||||
// printWindow.document.close();
|
||||
// printWindow.focus();
|
||||
// printWindow.print();
|
||||
// printWindow.close();
|
||||
let LODOP = getLodop();
|
||||
console.log(LODOP)
|
||||
if (LODOP == null) {
|
||||
alert('请先安装打印控件')
|
||||
return;
|
||||
}
|
||||
LODOP.PRINT_INIT('')
|
||||
// 设置打印纸大小
|
||||
LODOP.SET_PRINT_PAGESIZE(1, 800, '50px', "");
|
||||
// LODOP.SET_PRINT_PAGESIZE(1, 800, '300px', "");
|
||||
|
||||
// // 二维码控制大小
|
||||
// LODOP.ADD_PRINT_BARCODE('', '30px', '150px', '150px', "QRCode", 'https://www.baidu.com'); //打印产品代码条码
|
||||
// LODOP.SET_PRINT_MODE("PRINT_PAGE_PERCENT", "Full-Width "); //设置打印风格,这里是等宽打印
|
||||
// LODOP.SET_PRINTER_INDEX("GP-58MB Series"); //设置默认打印机(这里用的是打印机名称)
|
||||
|
||||
// // 文字内容
|
||||
// var strHTML = document.getElementById('viewtext')
|
||||
// console.log(strHTML.innerHTML)
|
||||
// LODOP.ADD_PRINT_HTM('150px', '5px', "100%", "100%",
|
||||
// `<div style="width: 100%;font-size: 12px; ">销售方名称:${this.ID}</div><div style="width: 100%;font-size: 12px; margin-top:6px;">开票金额:${this.ID}</div><div style="width: 100%;font-size: 12px; margin-top:6px;">生成时间:${this.ID}</div><div style="width: 100%;font-size: 12px; margin-top:6px;">生成时间:${this.ID}</div><div style="width: 100%;font-size: 12px; margin-top:6px;">二维码有效期:30天</div><div style="width: 100%;font-size: 14px; margin-top: 15px;">您可以使用微信,扫码开票</div>`
|
||||
// );
|
||||
LODOP.SET_LICENSES("","DCFF409304DFCEB3E2C644BF96CD0720","","");
|
||||
// LODOP.PREVIEW(); //带预览的打印
|
||||
LODOP.PRINT()
|
||||
|
||||
|
||||
window.print({
|
||||
mediaType: 'print',
|
||||
orientation: 'portrait',
|
||||
pageSize: '50mm',
|
||||
printBackground: true,
|
||||
scale: 0.5
|
||||
});
|
||||
},
|
||||
storeinvoicelist() {
|
||||
uni.request({
|
||||
@@ -69,7 +102,6 @@
|
||||
method: 'POST', //请求方式,必须为大写
|
||||
success: res => {
|
||||
this.datalsit = res.data.data.qrcode;
|
||||
console.log(this.datalsit)
|
||||
// 获取uQRCode实例
|
||||
var qr = new uQRCode();
|
||||
// 设置二维码内容
|
||||
|
||||
Reference in New Issue
Block a user