123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <div>
- <van-button @click="handleQrcode">扫一扫</van-button>
- <div id="qr-reader" style="width:500px"></div>
- <div id="qr-reader-results">
- {{ results }}
- </div>
- </div>
- </template>
- <script setup>
- import {Html5QrcodeScanner, Html5Qrcode, Html5QrcodeScanType} from "html5-qrcode";
- let results = ref(null)
- const state = reactive({
- html5QrCode: null,
- fileList: []
- })
- const handleQrcode = () => {
- Html5Qrcode.getCameras()
- .then(devices => {
- if (devices && devices.length) {
-
- state.html5QrCode = new Html5Qrcode('qr-reader')
- alert('摄像头识别成功')
- state.html5QrCode.start(
-
- {facingMode: 'environment'},
- {
- fps: 1,
- qrbox: {
- width: 250,
- height: 250
- }
- },
- (decodedText, decodedResult) => {
-
- results.value = {
- decodedText,
- decodedResult
- }
- }
- )
- }
- })
- .catch((e) => {
-
- alert(e)
- })
- }
- </script>
- <style scoped lang="scss">
- </style>
|