This commit is contained in:
Iruka 2025-02-08 17:26:11 +08:00
parent 98373f42a8
commit d1ecca8bae

View File

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