From d1ecca8bae8a0a1ba8ed54e62d8720ecbc5891ad Mon Sep 17 00:00:00 2001 From: Iruka <1017819588@qq.com> Date: Sat, 8 Feb 2025 17:26:11 +0800 Subject: [PATCH] . --- components/custom-index-adc/custom-index-adc.vue | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/components/custom-index-adc/custom-index-adc.vue b/components/custom-index-adc/custom-index-adc.vue index d6eba46..25b1988 100644 --- a/components/custom-index-adc/custom-index-adc.vue +++ b/components/custom-index-adc/custom-index-adc.vue @@ -44,6 +44,11 @@ value: `${row?.softVer} / ${row?.deviceVersion}`, unit: null }); + this.items.push({ + title: "频段", + value: row.rolaRrequency, + unit: null + }); this.items.push({ title: "充电状态", value: data?.adc?.charging ? '充电中' : '未充电', @@ -102,6 +107,13 @@ value: `${row.device?.softVer} / ${row.device?.deviceVersion}`, unit: null }); + if (data?.comm?.frequency) { + this.items.push({ + title: "频段", + value: data?.comm?.frequency, + unit: null + }); + } this.items.push({ title: "充电状态", value: data?.adc?.charging ? '充电中' : '未充电',