未绑定:手机刷卡-绑定,设备刷卡-收到卡号,二次刷卡操作设备

This commit is contained in:
WindowBird 2025-11-20 17:20:31 +08:00
parent b9f55dbacb
commit 446070712a
2 changed files with 7 additions and 7 deletions

View File

@ -128,7 +128,7 @@ export function bindNfcCard(data) {
/**
* 手机端读取卡号后上报
* @param {Object} data
* @param {string} data.cardId - 卡片唯一标识
* @param {string} data.nfcMac - 卡片唯一标识
* @returns {Promise}
*/
export function swipeNfcCard(params) {

View File

@ -745,11 +745,11 @@ export default {
cardNo = cardNo.replace(/[\s:]/g, "").toUpperCase();
this.cardNo = cardNo;
this.lastMessage = "已通过 NFC 读取卡号";
uni.showToast({
title: "读取成功",
icon: "success",
duration: 1500,
});
// uni.showToast({
// title: "",
// icon: "success",
// duration: 1500,
// });
console.log("NFC 读取到的卡号:", cardNo);
this.reportSwipeCard(cardNo);
} else {
@ -810,7 +810,7 @@ export default {
mask: true,
});
try {
const res = await swipeNfcCard({ cardId: cardNo });
const res = await swipeNfcCard({ nfcMac: cardNo });
if (res && res.code === 200) {
const message = (res && res.msg) || "";
const displayMessage = message || "读取成功";