You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
790 B
27 lines
790 B
3 years ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using AX.NetworkSystem;
|
||
|
using AX.Network.Protocols;
|
||
|
using AX.MessageSystem;
|
||
|
|
||
|
namespace MobileCFFSInfo
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 移动指挥终端模块错误提示处理
|
||
|
/// </summary>
|
||
|
public class ERROR : NetworkMessageBehaviour
|
||
|
{
|
||
|
protected override void Execute(BinaryMessage message)
|
||
|
{
|
||
|
var errorInfo = message.Body.Deserialize<ErrorInfo>();
|
||
|
|
||
|
//许可证到期、授权用户已达最大数、客户端身份与发送的数据不匹配 提示
|
||
|
HintContent hintContent = new HintContent();
|
||
|
hintContent.hints = errorInfo.ErrorMessage;
|
||
|
MessageDispatcher.SendMessage("POPUP_HINTWINDOW", hintContent);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|