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) || "";