zhangwei
2024-08-27 71d2e42ae642cecb5e8f6776c702cd20bafe6c01
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<template>
    <!--本文件由FirstUI授权予四川政采招投标咨询有限公司(会员ID:1  63,营业执照号:9  151   01 3 1  332  00 61  9   3K)专用,请尊重知识产权,勿私下传播,违者追究法律责任。-->
    <!-- #ifdef APP-NVUE -->
    <gcanvas @longpress="longtap" @touchstart="touchstart" @touchend="touchend" :ref="canvasId"
        :style="{ width: w + 'px', height:h + 'px'  }">
    </gcanvas>
    <!-- #endif -->
 
    <!-- #ifdef MP-QQ -->
    <canvas canvas-id="canvas_barcode" :style="{width:w+'px',height:h+'px'}" @longtap="longtap" @touchstart="touchstart"
        @touchend="touchend"></canvas>
    <!-- #endif -->
 
    <!-- #ifdef MP-WEIXIN -->
    <canvas type="2d" :canvas-id="canvasId" :id="canvasId" :style="{width:w+'px',height:h+'px'}" @longtap="longtap"
        @touchstart="touchstart" @touchend="touchend" v-if="canvasId"></canvas>
    <!-- #endif -->
 
    <!-- #ifndef APP-NVUE || MP-QQ || MP-WEIXIN -->
    <canvas :canvas-id="canvasId" :id="canvasId" :style="{width:w+'px',height:h+'px'}" @longtap="longtap"
        @touchstart="touchstart" @touchend="touchend" v-if="canvasId"></canvas>
    <!-- #endif -->
 
 
</template>
 
<script>
    import barcode from './barcode.js'
    import {
        code128
    } from './barcode-code128.js';
 
 
    // #ifdef APP-NVUE
    import {
        enable,
        WeexBridge
    } from './gcanvas/index.js';
    // #endif
    const defalutOptions = {
        number: true,
        prefix: true,
        color: '#181818',
        debug: false,
        onValid() {},
        onInvalid() {},
        onSuccess() {},
        onError() {}
    }
    // #ifdef MP-WEIXIN
    const canvasId = `fui_bc_${Math.ceil(Math.random() * 10e5).toString(36)}`
    // #endif
 
    // #ifdef MP-QQ
    const canvasId = 'canvas_barcode'
    // #endif
    export default {
        name: "fui-barcode",
        emits: ['ready', 'longclick', 'touchStart', 'touchEnd'],
        props: {
            width: {
                type: [Number, String],
                default: 480
            },
            height: {
                type: [Number, String],
                default: 200
            },
            value: {
                type: [Number, String],
                default: ''
            },
            //条形码类型:1-EAN-13 2-Code 128
            type: {
                type: [Number, String],
                default: 1
            }
        },
        data() {
            // #ifndef MP-WEIXIN || MP-QQ
            const canvasId = `fui_bc_${Math.ceil(Math.random() * 10e5).toString(36)}`
            // #endif
            return {
                canvasId,
                defalutOptions,
                w: 240,
                h: 100
            };
        },
        watch: {
            width(val) {
                this.w = uni.upx2px(val || 480)
            },
            height(val) {
                this.h = uni.upx2px(val || 200)
            }
        },
        created() {
            this.w = Math.round(uni.upx2px(this.width || 480))
            this.h = Math.round(uni.upx2px(this.height || 200))
            this.ctx = null;
        },
        mounted() {
            this.$nextTick(() => {
                setTimeout(() => {
                    this.$emit('ready', {
                        canvasId: this.canvasId
                    })
                }, 50)
            });
        },
        // #ifndef VUE3
        beforeDestroy() {
            this.ctx = null;
        },
        // #endif
        // #ifdef VUE3
        beforeUnmount() {
            this.ctx = null;
        },
        // #endif
        methods: {
            // #ifdef MP-WEIXIN
            getContext(callback) {
                const query = uni.createSelectorQuery().in(this)
                query.select(`#${this.canvasId}`)
                    .fields({
                        node: true,
                        size: true
                    })
                    .exec((res) => {
                        const canvas = res[0].node
                        const ctx = canvas.getContext('2d')
                        const dpr = wx.getSystemInfoSync().pixelRatio
                        canvas.width = res[0].width * dpr
                        canvas.height = res[0].height * dpr
                        ctx.scale(dpr, dpr)
                        this.ctx = ctx;
                        callback && callback()
                    })
            },
            // #endif
            drawBarcode(options) {
                // #ifdef MP-WEIXIN
                this.ctx.clearRect(0, 0, this.w, this.h);
                // #endif
 
                if (!this.ctx) {
                    // #ifdef APP-NVUE
                    let ganvas = this.$refs[this.canvasId];
                    /*通过元素引用获取canvas对象*/
                    let canvasObj = enable(ganvas, {
                        bridge: WeexBridge
                    });
                    /*获取绘图所需的上下文,暂不支持3d*/
                    this.ctx = canvasObj.getContext('2d');
                    // #endif
 
                    // #ifndef APP-NVUE || MP-WEIXIN
                    this.ctx = uni.createCanvasContext(this.canvasId, this)
                    // #endif
                }
 
                if (this.type == 1) {
                    const opts = Object.assign({}, this.defalutOptions, options)
                    new barcode(String(this.value), Object.assign({
                        width: this.w,
                        height: this.h
                    }, opts), this.ctx)
                } else {
                    code128(this.ctx, String(this.value), this.w, this.h)
                }
            },
            draw(options = {}) {
                // #ifdef MP-WEIXIN
                if (!this.ctx) {
                    this.getContext(() => {
                        this.drawBarcode(options)
                    })
                } else {
                    this.drawBarcode(options)
                }
                // #endif
 
                // #ifndef MP-WEIXIN
                this.drawBarcode(options)
                // #endif
            },
            longtap() {
                this.$emit('longclick', {})
            },
            touchstart() {
                this.$emit('touchStart', {})
            },
            touchend() {
                this.$emit('touchEnd', {})
            }
        }
    }
</script>
 
<style scoped></style>