hdw 246f7284bd 扫码 il y a 11 mois
..
utssdk 246f7284bd 扫码 il y a 11 mois
changelog.md 246f7284bd 扫码 il y a 11 mois
encrypt 246f7284bd 扫码 il y a 11 mois
index.uts 246f7284bd 扫码 il y a 11 mois
package.json 246f7284bd 扫码 il y a 11 mois
readme.md 246f7284bd 扫码 il y a 11 mois

readme.md

lime-scan

  • 基于华为Scan Sdk(非PLUS)的扫码插件,仅支持默认模式,目前只支持安卓
  • 文档:传送门

安装

导入插件后,自定义基座再使用。

基础使用

ScanType类型:
	qrCode - 二维码
	barCode - 一维码
	datamatrix - Data Matrix 码
	pdf417 - PDF417 条码
import {hmScanCode, ScanOptions, ScanResult} from '@/uni_modules/lime-scan';

 hmScanCode({
    scanType: ['qrCode'],
    success: (res: ScanResult) => {
      console.log(res);
    },
  } as ScanOptions);