From eda3fb873e59544ff36301b51e05aef64f87b0f9 Mon Sep 17 00:00:00 2001 From: wei <kaede@kaededeMacBook-Air.local> Date: 星期五, 27 八月 2021 13:21:21 +0800 Subject: [PATCH] Merge branch 'newBranch1' of http://172.16.1.23:6688/r/~wxr/HDL_APP_Project into newBranch1 --- HDL_ON/UI/UI2/4-PersonalCenter/AboutOn/FunctionIntroductionPage.cs | 24 ++++++++++++++---------- 1 files changed, 14 insertions(+), 10 deletions(-) diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/AboutOn/FunctionIntroductionPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/AboutOn/FunctionIntroductionPage.cs index c82d7af..d6f7783 100644 --- a/HDL_ON/UI/UI2/4-PersonalCenter/AboutOn/FunctionIntroductionPage.cs +++ b/HDL_ON/UI/UI2/4-PersonalCenter/AboutOn/FunctionIntroductionPage.cs @@ -86,7 +86,7 @@ { var rowView = new FrameLayout() { - Height = Application.GetRealHeight(54), + Height = Application.GetRealWidth(54), }; VerticalScrolViewMiddle.AddChidren(rowView); @@ -94,9 +94,9 @@ var btnTilte = new Button() { X = Application.GetRealWidth(16), - Y = Application.GetRealHeight(8), + Y = Application.GetRealWidth(8), Width = Application.GetRealWidth(320), - Height = Application.GetRealHeight(20), + Height = Application.GetRealWidth(20), TextAlignment = TextAlignment.CenterLeft, TextColor = CSS_Color.FirstLevelTitleColor, TextSize = CSS_FontSize.TextFontSize, @@ -108,9 +108,9 @@ var btnSubtitle = new Button() { X = Application.GetRealWidth(16), - Y = btnTilte.Bottom + Application.GetRealHeight(4), + Y = btnTilte.Bottom + Application.GetRealWidth(4), Width = Application.GetRealWidth(320), - Height = Application.GetRealHeight(14), + Height = Application.GetRealWidth(14), TextAlignment = TextAlignment.CenterLeft, TextColor = CSS_Color.PromptingColor1, TextSize = CSS_FontSize.PromptFontSize_SecondaryLevel, @@ -123,8 +123,8 @@ { X = Application.GetRealWidth(343), Gravity = Gravity.CenterVertical, - Width = Application.GetMinRealAverage(16), - Height = Application.GetMinRealAverage(16), + Width = Application.GetRealWidth(16), + Height = Application.GetRealWidth(16), UnSelectedImagePath = "Public/Right.png", }; @@ -176,9 +176,13 @@ { try { - var requestJson = HttpUtil.GetSignRequestJson(new AppNameObj() - { - }); + + Dictionary<string, object> AppName = new Dictionary<string, object>(); + //ON_Plus 2 + AppName.Add("appName", 2); + AppName.Add("languages", Utlis.GetPostLanguageType()); + + var requestJson = HttpUtil.GetSignRequestJson(AppName); var result = HttpUtil.RequestHttpsPost(NewAPI.API_POST_FunctionIntroductionList, requestJson); if (result.Code == StateCode.SUCCESS) -- Gitblit v1.8.0