更新记录
1.0.1(2024-07-22)
支持64位
1.0.0(2024-07-20)
华视电子,身份证阅读器
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.6.8,Android:4.4,iOS:不支持,HarmonyNext:不确定 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
华视电子,身份证阅读器
集成插件
- 拷贝demo示例的AndroidManifest.xml到项目根目录
- manifest.json -》 app常用其他设置 -》 支持CPU类型,只选择armeabi-v7a
- 集成步骤可参考https://www.jianshu.com/p/c1615a7880a7或官网
业务定制需求可加Q252797991
接口
import {
UTSHuashiIdcardNfc
} from "@/uni_modules/wrs-huashi-idcardnfc"
let idcard = new UTSHuashiIdcardNfc()
let ret = idcard.getSAMStatus()
if (ret == 0x90) {
this.showMsg("模块状态良好")
} else {
this.showMsg("模块状态错误:" + ret)
}
let filePath = plus.io.convertLocalFileSystemURL("_download/aa.png");
let params = {}
params.filePath = filePath // // 图片保存路径
let result = idcard.PICC_Reader_ForeignerIDCard(params)
let ret = result.ret
if (ret == 0 || ret == 1) {
// ret: 0 中国身份证 1 外国人永久居住证
this.showMsg("读取成功:" + JSON.stringify(result))
} else {
this.showMsg("读取失败:" + JSON.stringify(result))
}
let filePath = plus.io.convertLocalFileSystemURL("_download/bb.png");
let params = {}
params.filePath = filePath // 图片保存路径
let result = idcard.readBaseMsgToStr(params)
if (ret == 0x90) {
this.showMsg("读取成功:" + JSON.stringify(result))
} else {
this.showMsg("读取失败:" + JSON.stringify(result))
}
idcard.closeDevice()