liding
3 天以前 359f69135b571c8e7b6d046bc849655abfe7075d
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
<template>
    <div class="qrcode">
        <div id="reader"></div>
    </div>
</template>
 
<script>
import { Html5Qrcode } from "html5-qrcode";
export default {
    created() {
        this.getCameras()
    },
 
    beforeDestroy() {
        this.stop();
    },
    methods: {
        getCameras() {
            Html5Qrcode.getCameras()
                .then((devices) => {
                    if (devices && devices.length) {
                        console.log(devices)
                        this.html5QrCode = new Html5Qrcode("reader");
                        this.start();
                    }
                })
                .catch((err) => {
                    // handle err
                    this.html5QrCode = new Html5Qrcode("reader");
                    this.error = "ERROR: 您需要授予相机访问权限"
                    this.$emit("err", this.error)
                });
        },
        start() {
            //environment后置 user前置
            this.html5QrCode
                .start(
                    { facingMode: "environment" },
                    {
                        fps: 10 ,
                        qrbox: { width: 250, height: 250 },
                    },
                    (decodedText, decodedResult) => {
                        this.$emit("ok", decodedText)
                    }
                )
                .catch((err) => {
                    this.$emit("err", err)
                });
        },
        stop() {
            this.html5QrCode.stop().then((ignore) => {
                // QR Code scanning is stopped.
                console.log("QR Code scanning stopped.");
            })
                .catch((err) => {
                    // Stop failed, handle it.
                    console.log("Unable to stop scanning.");
                });
        },
    }
}
</script>
 
<style lang="scss" scoped>
.qrcode {
    position: relative;
    height: 100%;
    width: 100%;
    background: rgba($color: #000000, $alpha: 0.48);
}
 
#reader {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
</style>