.
This commit is contained in:
parent
98373f42a8
commit
d1ecca8bae
@ -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 ? '充电中' : '未充电',
|
||||
|
Loading…
Reference in New Issue
Block a user