|
|
|
@ -27,6 +27,25 @@ public class DeviceInfo : MonoBehaviour
|
|
|
|
|
infoName.text = "设备信息"; |
|
|
|
|
bindInfo = info; |
|
|
|
|
|
|
|
|
|
foreach (Transform item in DevicePanelManager.Instance.transform) |
|
|
|
|
{ |
|
|
|
|
if (item.GetComponent<DeviceBind>() && item.gameObject.activeSelf) |
|
|
|
|
{ |
|
|
|
|
foreach (Transform child in item.GetComponent<DeviceBind>().BindParent) |
|
|
|
|
{ |
|
|
|
|
if (child.GetComponent<DeviceItem>()) |
|
|
|
|
if (child.GetComponent<DeviceItem>().BindData.deviceNo == info.deviceNo) |
|
|
|
|
{ |
|
|
|
|
child.GetComponent<DeviceItem>().Selected.SetActive(true); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
child.GetComponent<DeviceItem>().Selected.SetActive(false); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
foreach (Transform item in infoParent) |
|
|
|
|
{ |
|
|
|
|
if (item.name != "None") |
|
|
|
@ -83,7 +102,7 @@ public class DeviceInfo : MonoBehaviour
|
|
|
|
|
go.GetComponent<DeviceInfoItem>().Bind("预警状态 : " + (pinfo.alarmStatus == "0" ? "正常" : "告警")); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
else if (info.deviceType == (int)DeviceType.消火栓末端|| info.deviceType == (int)DeviceType.消防主管网 |
|
|
|
|
else if (info.deviceType == (int)DeviceType.消火栓末端 || info.deviceType == (int)DeviceType.消防主管网 |
|
|
|
|
|| info.deviceType == (int)DeviceType.喷淋末端 || info.deviceType == (int)DeviceType.喷淋主管网) |
|
|
|
|
{ |
|
|
|
|
XHSMDInfo pinfo = JsonConvert.DeserializeObject<XHSMDInfo>(info.timelyData.ToString()); |
|
|
|
|