1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
| <template>
| <view class="content">
| <view class="btn-wrap">
| <kk-printer defaultText="测试打印" ref="kkprinter" :bufferData="bufferData" @onPrint="onPrint"></kk-printer>
| </view>
| </view>
| </template>
|
| <script>
| import util from '@/components/kk-printer/utils/util.js';
| import * as blesdk from '@/components/kk-printer/utils/bluetoolth.js';
| import kkPrinter from '@/components/kk-printer/index.vue';
| export default {
| data() {
| return {
| bufferData:''
| }
| },
| components:{
| kkPrinter
| },
| mounted() {
|
| },
| methods: {
| onPrint(opt){
| let strCmd =blesdk.CreatCPCLPage(560,500,1,0);
| strCmd += blesdk.addCPCLLine(0,210,560,210,3);
| strCmd += blesdk.addCPCLText(10,0,'4','3',0,'8.14');
| strCmd += blesdk.addCPCLBarCode(270,0,'128',80,0,1,1,'00051');
| strCmd += blesdk.addCPCLText(290,80,'7','2',0,'00051');
| strCmd += blesdk.addCPCLText(40,110,'3','0',0,'CHICKEN FEET (BONELESS)-Copy-Copy');
| strCmd += blesdk.addCPCLSETMAG(2,2);
| strCmd += blesdk.addCPCLText(40,150,'55','0',0,'无骨鸡爪 一盒(约1.5磅)');
| strCmd += blesdk.addCPCLSETMAG(0,0);
| strCmd += blesdk.addCPCLText(350,180,'7','2',0,'2019-08-12');
| strCmd += blesdk.addCPCLLocation(2);
| strCmd += blesdk.addCPCLQRCode(0,220,'M', 2, 6, 'qr code test');
| strCmd += blesdk.addCPCLPrint();
| this.bufferData = strCmd;
| }
| }
| }
| </script>
|
| <style>
| .content {
| width: 100vw;
| height: 100vh;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| }
| .btn-wrap{
| width:180upx;
| height: 100upx;
| border-radius: 16upx;
| border: 2upx solid #333333;
| box-sizing: border-box;
| display: flex;
| justify-content: center;
| align-items: center;
| }
| </style>
|
|