From 5b818deed5e239cc99e6319aeb88a10641ff8ea4 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Tue, 25 Nov 2025 11:51:29 +0800 Subject: [PATCH] =?UTF-8?q?nfc=E7=89=8C=E4=BD=8D=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E7=BB=91=E5=AE=9A=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/memorial/nfcPairing.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/memorial/nfcPairing.vue b/pages/memorial/nfcPairing.vue index e8f4f56..f569152 100644 --- a/pages/memorial/nfcPairing.vue +++ b/pages/memorial/nfcPairing.vue @@ -645,14 +645,14 @@ export default { uni.showLoading({ title: "提交中...", mask: true }); try { const payload = { - // memorialMac: this.deviceMac, + memorialMac: this.deviceMac, nfcMac: this.cardNo, }; // 优先使用 memorialId,如果没有则使用 unitId - const memorialId = this.memorialId || this.unitId; - if (memorialId) { - payload.memorialId = memorialId; - } + // const memorialId = this.memorialId || this.unitId; + // if (memorialId) { + // payload.memorialId = memorialId; + // } const res = await bindNfcCard(payload); const success = res && (res.code === 200 || res.status === 200); const message = (res && res.msg) || "";