更新记录
1.0.1(2021-07-19) 下载此版本
连续扫码
1.0.0(2021-07-14) 下载此版本
条形码扫码 二维码扫码 扫码信息 扫码图片
平台兼容性
# ws-carema
本扫码功能支持连续扫码,获取图片
使用方式
// 在js中引用
import WsCarema from "@/components/ws-carema/index.vue"
components:{ WsCarema },
// 在界面中引用
<view class="container">
<ws-carema ref="carema" @scanItem="scanItem" @scanList="scanList"></ws-carema>
</view>
参数说明
参数 | 类型 | 默认值 | 说明 |
---|---|---|---|
getPhoto | boolean | true | 是否返回图片信息 |
isContinuous | boolean | true | 是否连续扫码 |
scanInterval | Number | 1000ms | 连续扫码间隔 |
checkRepeat | boolean | true | 是否判断重复扫码 |
showList | boolean | true | 是否显示连续扫码列表,isContinuous为true时生效 |
scanItem | function | 无 | @scanItem="scanItem", 返回当前扫码数据,数据格式: {text: 'xxx', url: 'xxx'} |
scanList | function | 无 | @scanList="scanList", isContinuous为true时生效,返回扫码列表,数据格式: [{text: 'xxx', url: 'xxx'}, {text: 'xxx', url: 'xxx'}] |