Browse Source

454343

master
fyf 2 years ago
parent
commit
6c0fad7916
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      DataVAPI/UpAndDown/ProcessServer.cs

+ 1
- 1
DataVAPI/UpAndDown/ProcessServer.cs View File

@@ -228,7 +228,7 @@ namespace DataVAPI.UpAndDown
int index = 0; int index = 0;


if (receiveModel.status.value == "离线") { index = devModel.operatingDeviceStatus.data.Count - 1; } if (receiveModel.status.value == "离线") { index = devModel.operatingDeviceStatus.data.Count - 1; }
else index = devModel.operatingDeviceStatus.data.FindLastIndex(0, ar => ar.DeviceMS.Contains("离线"));
else index = devModel.operatingDeviceStatus.data.FindIndex(0, ar => ar.DeviceMS.Contains("离线"));
if (index > devModel.operatingDeviceStatus.data.Count - 1) index = devModel.operatingDeviceStatus.data.Count - 1; if (index > devModel.operatingDeviceStatus.data.Count - 1) index = devModel.operatingDeviceStatus.data.Count - 1;


int now = devModel.operatingDeviceStatus.data.IndexOf(dev); int now = devModel.operatingDeviceStatus.data.IndexOf(dev);


Loading…
Cancel
Save