From eb76239882830f3960b8800bb0f2c90ca7b3f378 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期四, 04 八月 2022 09:19:10 +0800 Subject: [PATCH] Merge branch 'release0123' --- HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/Iot_BrandListPage.cs | 239 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 239 insertions(+), 0 deletions(-) diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/Iot_BrandListPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/Iot_BrandListPage.cs new file mode 100644 index 0000000..32531d7 --- /dev/null +++ b/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/Iot_BrandListPage.cs @@ -0,0 +1,239 @@ +锘縰sing System; +using System.Collections.Generic; +using HDL_ON.DAL.Server; +using HDL_ON.Entity; +using HDL_ON.UI.CSS; +using Shared; + +namespace HDL_ON.UI +{ + /// <summary> + /// 绗笁鏂瑰搧鐗屽垪琛ㄧ晫闈� + /// </summary> + public class Iot_BrandListPage : FrameLayout + { + FrameLayout bodyView; + + VerticalScrolViewLayout contentView;//VerticalRefreshLayout + + List<IntegratedBrand_Iot> brandList; + + public Iot_BrandListPage() + { + bodyView = this; + brandList = new List<IntegratedBrand_Iot>(); + } + + public void LoadPage() + { + + + new TopViewDiv(bodyView, Language.StringByID(StringId.Bind3thIotAccount)).LoadTopView(CSS_Color.MainBackgroundColor); + + bodyView.BackgroundColor = CSS_Color.MainBackgroundColor; + + bodyView.AddChidren(new Button + { + Y = Application.GetRealHeight(64), + Height = Application.GetRealHeight(1), + BackgroundColor = CSS_Color.DividingLineColor, + }); + + Button btnTipText = new Button() + { + Y = Application.GetRealHeight(80), + Width = Application.GetRealWidth(347), + Height = Application.GetRealHeight(65), + Gravity = Gravity.CenterHorizontal, + Radius = (uint)Application.GetRealWidth(5), + BackgroundColor = 0x194484F4, + TextColor = CSS_Color.FirstLevelTitleColor, + Padding = new Padding(12, Application.GetRealWidth(16), 12, Application.GetRealWidth(16)), + TextSize = CSS_FontSize.TextFontSize, + Text = "閫氳繃缁戝畾绗笁鏂瑰钩鍙拌处鍙峰瘎鍝噷浜戠杩炴帴锛屽皢鎮ㄥ湪涓夋柟骞冲彴鐨勮澶囧悓姝ュ埌On Pro杩涜鎺у埗", + IsMoreLines = true, + TextAlignment = TextAlignment.CenterLeft, + }; + bodyView.AddChidren(btnTipText); + + contentView = new VerticalScrolViewLayout() + { + Y = Application.GetRealHeight(150), + Height = Application.GetRealHeight(573), + }; + bodyView.AddChidren(contentView); + + + + + GetBindList(); + + //contentView.BeginHeaderRefreshingAction = () => + //{ + // contentView.EndHeaderRefreshing(); + // GetBindList(); + //}; + + } + /// <summary> + /// 鑾峰彇缁戝畾鍒楄〃 + /// </summary> + void GetBindList() + { + var waitPage = new Loading(); + waitPage.Start(); + new System.Threading.Thread(() => { + try + { + var pm = new DAL.Server.HttpServerRequest(); + var pack = pm.Get3tyIotBrandList(); + if (pack.Code == DAL.Server.StateCode.SUCCESS) + { + brandList = Newtonsoft.Json.JsonConvert.DeserializeObject<List<IntegratedBrand_Iot>>(pack.Data.ToString()); + if (brandList.Count > 0) + { + Application.RunOnMainThread(() => + { + LoadRow(); + }); + } + else + { + Application.RunOnMainThread(() => + { + //NotListTipView(); + LoadRow(); + }); + } + } + else + { + IMessageCommon.Current.ShowErrorInfoAlter(pack.Code); + } + } + catch (Exception ex) + { + MainPage.Log("2--::" + ex.Message); + } + finally + { + Application.RunOnMainThread(() => { waitPage.Hide(); }); + } + }) + { IsBackground = true }.Start(); + } + + + void LoadRow() + { + contentView.RemoveAll(); + //brandList.Add(new IntegratedBrand_Iot + //{ + // authBrandNameCn = "Test Hdl", + // authBrandNameEn = "Test Hdl", + // hasAuthorization = false + //}); + + foreach (var brand in brandList) + { + var row = new RowLayout() + { + Height = Application.GetRealHeight(87), + BackgroundColor = CSS_Color.MainBackgroundColor, + LineColor = 0x00000000, + }; + contentView.AddChidren(row); + + Button btnLine = new Button() + { + Y = Application.GetRealWidth(86), + Gravity = Gravity.CenterHorizontal, + Width = Application.GetRealWidth(343), + Height = 1, + BackgroundColor = CSS_Color.DividingLineColor, + }; + row.AddChidren(btnLine); + + ImageView btnIcon = new ImageView() + { + X = Application.GetRealWidth(12), + Gravity = Gravity.CenterVertical, + Width = Application.GetRealWidth(47), + Height = Application.GetRealWidth(47), + Radius = (uint)Application.GetRealWidth(9), + BackgroundColor = CSS_Color.PromptingColor1 + }; + row.AddChidren(btnIcon); + + Button btnBindTip = new Button() + { + Width = Application.GetRealWidth(326), + TextAlignment = TextAlignment.CenterRight, + TextColor = CSS_Color.PromptingColor1, + TextSize = CSS_FontSize.SubheadingFontSize, + TextID = brand.hasAuthorization ? StringId.Bound : StringId.Unbound, + }; + row.AddChidren(btnBindTip); + + + Button btnRight = new Button() + { + X = Application.GetRealWidth(339), + Gravity = Gravity.CenterVertical, + Width = Application.GetMinRealAverage(16), + Height = Application.GetMinRealAverage(16), + UnSelectedImagePath = "Public/Right.png", + }; + row.AddChidren(btnRight); + + Button btnName = new Button() + { + X = Application.GetRealWidth(83), + Width = Application.GetRealWidth(310), + TextAlignment = TextAlignment.CenterLeft, + TextColor = CSS_Color.FirstLevelTitleColor, + TextSize = CSS_FontSize.TextFontSize, + Text = brand.authBrandNameCn, + }; + row.AddChidren(btnName); + //涓嬭浇绗笁鏂瑰搧鐗宨con + ImageUtlis.Current.Load3tyBrandIconImages(brand.brandName, brand.authrBandIconUrl, btnIcon); + + btnName.MouseUpEventHandler = (sender, e) => { + if (brand.hasAuthorization) + { + Action unboundAction = () => + { + brand.hasAuthorization = false; + btnBindTip.TextID = StringId.Unbound; + }; + var page = new Iot_BrandFunctionListPage(brand); + MainPage.BasePageView.AddChidren(page); + page.unboundAction = unboundAction; + page.LoadPage(); + MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; + } + else + { + Action action = () => { + brand.hasAuthorization = true; + btnBindTip.TextID = StringId.Bound; + }; + Action action2 = () => { + brand.hasAuthorization = false; + btnBindTip.TextID = StringId.Unbound; + }; + var page = new iot_BindTipPage(); + MainPage.BasePageView.AddChidren(page); + page.boundAction = action; + page.unboundAction = action2; + page.LoadPage(brand); + MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; + } + }; + } + + } + + } +} -- Gitblit v1.8.0