1.启动
1.1.启动前获取网关信息
60*3 = 180s 的等待时间
var error = 0;
while (error < 60)
{
if (Panda.UIAPP.Common.AppGlobalConfig.GatWayInfo == null)
{
error++;
System.Threading.Thread.Sleep(3000);
}
else
{
error = 60;
}
}
if (Panda.UIAPP.Common.AppGlobalConfig.GatWayInfo == null)
{
var msg = $"没有找到网关{Panda.UIAPP.Common.AppGlobalConfig.GatwayGuid},请联系厂家";
Panda.Framework.LogHelper.WriteErrorLog(msg);
Common.MessageDxUtil.ShowWarning(msg);
Exit();
}
if (Panda.UIAPP.Common.AppGlobalConfig.DictList == null)
{
var msg = $"没有找到字典信息{Panda.UIAPP.Common.AppGlobalConfig.GatwayGuid},请联系厂家";
Panda.Framework.LogHelper.WriteErrorLog(msg);
Common.MessageDxUtil.ShowWarning(msg);
Exit();
}