| | |
| | | /// <summary> |
| | | /// 版本号 |
| | | /// </summary> |
| | | public static string VersionString = "1.0.0924"; |
| | | public static string VersionString = "1.1.0119"; |
| | | ///// <summary> |
| | | ///// 客户端类型 |
| | | ///// </summary> |
| | |
| | | /// </summary> |
| | | public static bool NoLoginMode = false; |
| | | /// <summary> |
| | | /// 远程模式 |
| | | /// </summary> |
| | | public static bool IsRemote = false; |
| | | /// <summary> |
| | | /// 网络连接状态 |
| | | /// 0:无网络 |
| | | /// </summary> |
| | | public static int InternetStatus = 2; |
| | | /// <summary> |
| | | /// 是否进入后台 |
| | | /// </summary> |
| | | public static bool IsEnterBackground = false; |
| | | |
| | | ///// <summary> |
| | | ///// 公司代码 |
| | |
| | | Application.MainPage.BackgroundColor = CSS_Color.MainBackgroundColor; |
| | | |
| | | |
| | | //#region 测试 |
| | | //var ddd = new UI.test.TestDialog(); |
| | | //ddd.InitView(); |
| | | //return; |
| | | //#endregion |
| | | |
| | | if (string.IsNullOrEmpty(OnAppConfig.Instance.LastLoginUserId)) |
| | | { |
| | | GoLoginPage(); |
| | |
| | | } |
| | | else |
| | | { |
| | | new System.Threading.Thread(() => |
| | | { |
| | | var pm = new DAL.Server.HttpServerRequest(); |
| | | pm.RefreshToken();//刷新Token |
| | | pm.GetHomePager();//刷新住宅信息 |
| | | pm.GetUserInfo();//刷新个人信息 |
| | | }) |
| | | { IsBackground = true }.Start(); |
| | | //new System.Threading.Thread(() => |
| | | //{ |
| | | // var pm = new DAL.Server.HttpServerRequest(); |
| | | // pm.RefreshToken();//刷新Token |
| | | // pm.GetHomePager();//刷新住宅信息 |
| | | // pm.GetUserInfo();//刷新个人信息 |
| | | //}) |
| | | //{ IsBackground = true }.Start(); |
| | | Common.ApiUtlis.Ins.DownloadData(); |
| | | |
| | | GoUserPage(true); |
| | | GoUserPage(false,true); |
| | | } |
| | | } |
| | | } |
| | |
| | | /// 进入主页 |
| | | /// </summary> |
| | | /// <param name="isFirstOpen">如果是第一次启动 检测校验密码</param> |
| | | public static void GoUserPage(bool isFirstOpen = false) |
| | | /// <param name="pageShowEvent">主页显示之后触发的事件(没有住宅的话,则不会触发)</param> |
| | | public static void GoUserPage(bool downloadData , bool isFirstOpen = false, Action pageShowEvent = null) |
| | | { |
| | | //加载Loading效果 |
| | | var waitPage = new Loading(); |
| | | BaseView.AddChidren(waitPage); |
| | | waitPage.Start(Language.StringByID(StringId.PleaseWait)); |
| | | |
| | | //当没有住宅时,不能让它往下走 |
| | | if (UserInfo.Current.regionList.Count == 0) |
| | | { |
| | | waitPage.Hide(); |
| | | var addResidencePage = new BindingResidencePage(); |
| | | BaseView.AddChidren(addResidencePage); |
| | | addResidencePage.LoadView(); |
| | | return; |
| | | } |
| | | |
| | | new System.Threading.Thread(() => |
| | | { |
| | | try |
| | | { |
| | | if (UserInfo.Current.regionList.Count == 0) |
| | | { |
| | | bool loadPage = true; |
| | | var pm = new DAL.Server.HttpServerRequest(); |
| | | while (UserInfo.Current.regionList.Count == 0) |
| | | { |
| | | pm.GetHomePager();//刷新住宅信息 |
| | | System.Threading.Thread.Sleep(3000); |
| | | if (loadPage) |
| | | { |
| | | loadPage = false; |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | waitPage.Hide(); |
| | | var addResidencePage = new BindingResidencePage(); |
| | | BaseView.AddChidren(addResidencePage); |
| | | addResidencePage.LoadDialog(); |
| | | }); |
| | | } |
| | | } |
| | | } |
| | | else |
| | | { |
| | | Entity.FunctionList.List.Clear(); |
| | | Entity.SpatialInfo.CurrentSpatial.Clear(); |
| | | } |
| | | Entity.FunctionList.List.Clear(); |
| | | Entity.SpatialInfo.CurrentSpatial.Clear(); |
| | | ///等待获取住宅信息 |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | waitPage.Hide(); |
| | | waitPage.RemoveFromParent(); |
| | | BaseView.RemoveAll(); |
| | | BasePageView = new PageLayout(); |
| | | BasePageView.ScrollEnabled = false; |
| | |
| | | BaseView.AddChidren(BasePageView); |
| | | |
| | | //跳转页面---- |
| | | var userPage = new UserPage(); |
| | | BasePageView.AddChidren(userPage); |
| | | userPage.LoadPage(); |
| | | var UserBasePage = new UserPage(); |
| | | BasePageView.AddChidren(UserBasePage); |
| | | UserBasePage.LoadPage(); |
| | | BasePageView.PageIndex = 0; |
| | | |
| | | if (isFirstOpen) |
| | |
| | | //启动密码验证 |
| | | new AppUnlockPage().LoadPage(isFirstOpen); |
| | | } |
| | | //主页加载完成,回调事件 |
| | | pageShowEvent?.Invoke(); |
| | | pageShowEvent = null; |
| | | }); |
| | | } |
| | | catch (Exception ex) |
| | |
| | | MainPage.Log($"GoUserPage : {ex.Message}"); |
| | | }finally |
| | | { |
| | | ///初始化app数据 |
| | | InitializationData(); |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | if (downloadData) |
| | | { |
| | | ///初始化app数据 |
| | | Common.ApiUtlis.Ins.DownloadData(); |
| | | }; |
| | | }); |
| | | } |
| | | }).Start(); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 初始化app所需要的数据 |
| | | /// 后退事件 |
| | | /// 0:后退 |
| | | /// 1:有等待界面 |
| | | /// 2:无法再后退,可以执行退到桌面 |
| | | /// </summary> |
| | | public static void InitializationData() |
| | | public static int LoadEvent_BackAction() |
| | | { |
| | | new System.Threading.Thread(() => |
| | | int result = 0; |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | while (true) |
| | | if (BaseView.ChildrenCount>1) |
| | | { |
| | | if (Entity.DB_ResidenceData.Instance == null )//|| Entity.DB_ResidenceData.residenceData.HomeGateway == null) |
| | | var view = BaseView.GetChildren(BaseView.ChildrenCount - 1); |
| | | if(view.GetType() == typeof(Loading)) |
| | | { |
| | | System.Threading.Thread.Sleep(100); |
| | | var loading = view as Loading; |
| | | if (loading.CurStatus == false)//有一些等待界面隐藏了,但是没有移除到,需要先移除 |
| | | { |
| | | loading.RemoveFromParent(); |
| | | result = LoadEvent_BackAction(); |
| | | } |
| | | else |
| | | { |
| | | result = 1;//正在等待某些操作 |
| | | } |
| | | } |
| | | } |
| | | else |
| | | { |
| | | if (BasePageView.ChildrenCount > 1) |
| | | { |
| | | int index = BasePageView.ChildrenCount - 1; |
| | | var view = BasePageView.GetChildren(index); |
| | | if (view != null) |
| | | { |
| | | view.RemoveFromParent(); |
| | | } |
| | | } |
| | | else |
| | | { |
| | | break; |
| | | result = 2;//无法再后退,可以执行退到桌面 |
| | | } |
| | | } |
| | | //System.Threading.Thread.Sleep(2000); |
| | | #region 读取云端数据-- |
| | | //todo数据覆盖处理 |
| | | //读取云端房间、楼层数据 |
| | | Entity.SpatialInfo.CurrentSpatial.DownloadRoomList(); |
| | | //读取云端设备数据 |
| | | Entity.FunctionList.List.DownloadFunctionList(); |
| | | //读取云端场景数据 |
| | | Entity.FunctionList.List.DownloadSceneList(); |
| | | #endregion |
| | | |
| | | }) |
| | | { IsBackground = true }.Start(); |
| | | |
| | | #region 读取本地数据 |
| | | //读取音乐信息 |
| | | UI.Music.A31MusicModel.ReadMusicStates(); |
| | | //搜索网关 |
| | | DriverLayer.Control.Ins.SearchLoaclGateway(); |
| | | #endregion |
| | | }); |
| | | return result; |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 自定义日志输出 |
| | |
| | | #endif |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 生成13位时间戳 |
| | | /// </summary> |
| | | /// <param name="value">时间</param> |
| | | /// <returns></returns> |
| | | public static long GetTimestamp13bit(DateTime value) |
| | | { |
| | | return new DateTimeOffset(value).ToUnixTimeSeconds(); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 获取时间 |
| | | /// </summary> |
| | | /// <param name="timestamp"></param> |
| | | /// <returns></returns> |
| | | public static DateTime GetDateTime (long timestamp) |
| | | { |
| | | long begtime = timestamp * 10000000; |
| | | DateTime dt_1970 = new DateTime(1970, 1, 1, 0, 0, 0); |
| | | long tricks_1970 = dt_1970.Ticks;//1970年1月1日刻度 |
| | | long time_tricks = tricks_1970 + begtime;//日志日期刻度 |
| | | DateTime dt = new DateTime(time_tricks);//转化为DateTime |
| | | return dt; |
| | | } |
| | | |
| | | } |
| | | |