更新记录

1.0.0(2024-12-19) 下载此版本

关联插件 jz-nls-ur90

基础使用案例

设置盘点协议 -> 设置盘点参数 -> 开启广播监听 this.getPowerStatus() if (!this.powerStatus) { powerOn() } this.$nextTick(() => { setStocktakingParam("6") // 设置协议为18000-6c setEmbededParam() this.startListening() }) }, // 获取上下电状态 getPowerStatus() { this.powerStatus = getPowerStatus(); }, // 下电 handleOff() { powerOff({ success: (res) => { this.showToast(res) this.getPowerStatus() this.$refs.rfidRef.startListening() setEmbededParam() }, fail: (res) => { this.showToast(res) }, }) }, // 上电 handleOn() { powerOn({ success: (res) => { this.showToast(res) } }) }, // 开启广播监听 startListening() { this.$refs.rfidRef.startListening((status) => { this.listeningStatus = status }) }, // 结束广播监听 stopListening() { this.$refs.rfidRef.stopListening((status) => { this.listeningStatus = status }) }, // 开始盘点 handleStartTagInventory() { if(!this.listeningStatus) { uni.showToast({ title: "请先开启广播监听", duration: 2000 }); return } startTagInventory({ success: (res) => { this.showToast(res) }, fail: (res) => { this.showToast(res) }, }) }, // 结束盘点 handleStopTagInventory() { stopTagInventory({ success: (res) => { this.showToast(res) }, fail: (res) => { this.showToast(res) }, }) }, showToast(msg, duration = 2000){ uni.showToast({ title: msg, duration: duration }); } }, beforeDestroy() { this.stopListening(); // 在组件销毁前确保取消监听 this.handleStopTagInventory(); // 在组件销毁前确保停止盘点 this.handleOff(); // 在组件销毁前确保下电 } } <style> .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo { height: 200rpx; width: 200rpx; margin-top: 200rpx; margin-left: auto; margin-right: auto; margin-bottom: 50rpx; } .text-area { display: flex; justify-content: center; } .title { font-size: 36rpx; color: #8f8f94; } .buttons-container { display: flex; justify-content: space-around; margin-top: 20px; width: 100%; } .button { width: 35%; } </style>

平台兼容性

Vue2 Vue3
App 快应用 微信小程序 支付宝小程序 百度小程序 字节小程序 QQ小程序
HBuilderX 4.11 app-vue × × × × × ×
钉钉小程序 快手小程序 飞书小程序 京东小程序 鸿蒙元服务
× × × × ×
H5-Safari Android Browser 微信浏览器(Android) QQ浏览器(Android) Chrome IE Edge Firefox PC-Safari
× × × × × × × × ×

nls-rfid

隐私、权限声明

1. 本插件需要申请的系统权限列表:

2. 本插件采集的数据、发送的服务器地址、以及数据用途说明:

3. 本插件是否包含广告,如包含需详细说明广告表达方式、展示频率:

许可协议

MIT协议

暂无用户评论。

使用中有什么不明白的地方,就向插件作者提问吧~ 我要提问