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 ? '充电中' : '未充电',