diff --git a/src/stores/transferData.ts b/src/stores/transferData.ts index 02af979..9d1c436 100644 --- a/src/stores/transferData.ts +++ b/src/stores/transferData.ts @@ -61,6 +61,8 @@ export const useTransferDataStore = defineStore('transfer', () => { hasDevice.lastUpdated = Date.now() hasDevice.status = '在线' hasDevice.footprint = formatSizeFromKB(Number(feedback[4] || 0)) + hasDevice.clientIp = feedback[4] + hasDevice.versions = feedback[3] ?? '--' } else { const num = feedback[4] || 0 const device: IOnlineDevice = { diff --git a/src/views/stationData/topology/index.vue b/src/views/stationData/topology/index.vue index 0d5fc89..6ec6028 100644 --- a/src/views/stationData/topology/index.vue +++ b/src/views/stationData/topology/index.vue @@ -1,7 +1,7 @@