wjc
2023-04-11 e74f8bfbe6c52f220deef5fc99a53c3a7872808d
HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs
@@ -70,7 +70,7 @@
        /// <param name="mSecondList">二级数据集合</param>
        /// <param name="SelectAction">选择回调事件</param>
        /// <param name="selectTagId"></param>
        public void ShowView(List<RoomCellInfo> mFirstList, List<List<RoomCellInfo>> mSecondList, Action<string> SelectAction, string selectTagId = ALLSELECT)
        public void ShowView(List<RoomCellInfo> mFirstList, List<List<RoomCellInfo>> mSecondList, Action<string> SelectAction, string selectTagId = ALLSELECT, int offsetY = 0)
        {
            if (mFirstList == null)
            {
@@ -109,7 +109,7 @@
                }
                //View显示
                ShowDoubleBaseView();
                ShowDoubleBaseView(offsetY);
                //数据内容填充
                RefreshDoubleBaseView();
                //选中效果
@@ -206,7 +206,7 @@
        /// <summary>
        /// 显示二级view
        /// </summary>
        void ShowDoubleBaseView()
        void ShowDoubleBaseView(int offsetY = 0)
        {
            bodyView.BackgroundColor = CSS_Color.DialogTransparentColor1;
            this.AddChidren(bodyView);
@@ -218,7 +218,7 @@
            BackView = new FrameLayout()
            {
                X = Application.GetRealWidth(10),
                Y = Application.GetRealHeight(104),
                Y = Application.GetRealHeight(104+ offsetY),
                Width = Application.GetRealWidth(283),
                Height = Application.GetRealWidth(242),
            };