From 1de958df20014e6a858d1a0da9e277766518c96c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=AE=E5=BE=AE=E4=B8=80=E7=AC=91?= <709648985@qq.com> Date: Fri, 24 Oct 2025 10:29:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BC=98=E5=8C=967305?= =?UTF-8?q?=E8=AE=BE=E5=A4=87=E5=B1=8F=E5=B9=95=E7=82=B9=E9=98=B5=E5=8F=96?= =?UTF-8?q?=E6=A8=A1=E5=85=BC=E5=AE=B9=E8=AE=BE=E5=A4=87=E7=AB=AF=E5=A1=AB?= =?UTF-8?q?=E5=9D=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../TextToHex/textToDotMatrixFor7305.vue | 205 + pages/7305/BJQ7305.vue | 3478 ++++++++--------- utils/BleHelper.js | 8 +- 3 files changed, 1949 insertions(+), 1742 deletions(-) create mode 100644 components/TextToHex/textToDotMatrixFor7305.vue diff --git a/components/TextToHex/textToDotMatrixFor7305.vue b/components/TextToHex/textToDotMatrixFor7305.vue new file mode 100644 index 0000000..53661d0 --- /dev/null +++ b/components/TextToHex/textToDotMatrixFor7305.vue @@ -0,0 +1,205 @@ + + + + + \ No newline at end of file diff --git a/pages/7305/BJQ7305.vue b/pages/7305/BJQ7305.vue index 284ee44..368c09e 100644 --- a/pages/7305/BJQ7305.vue +++ b/pages/7305/BJQ7305.vue @@ -1,1740 +1,1740 @@ - - - - - \ No newline at end of file diff --git a/utils/BleHelper.js b/utils/BleHelper.js index 6f329ac..52a18a4 100644 --- a/utils/BleHelper.js +++ b/utils/BleHelper.js @@ -33,9 +33,11 @@ class BleHelper { if (linkedDevices && linkedDevices.length && linkedDevices.length > 0) { // console.log("111111", linkedDevices); linkedDevices = linkedDevices.filter((v) => { - v.Linked = false; - v.notifyState = false; - return true; + if(v){ + v.Linked = false; + v.notifyState = false; + } + return v?true:false; }); }