wei
2021-09-26 dd3fecc3a8b92b377febfcf92d32ec22a07724f6
HDL_ON/UI/UI2/2-Classification/RoomPageBLL.cs
@@ -30,18 +30,17 @@
        {
            Action editBackAction = () =>
            {
                room.SaveRoomData();
                room.UpdataRoomInfo();
                ReLoadPage();
                ReloadRoomName();
            };
            Action delAction = () => {
                this.RemoveFromParent();
                deleteAction?.Invoke();
            };
            var skipPage = new RoomEditPage(room, StringId.EditRoomInfo, editBackAction, delAction);
            var skipPage = new RoomEditPage(room, editBackAction, delAction, this.modifyImageAction);
            MainPage.BasePageView.AddChidren(skipPage);
            skipPage.LoadPage();
            MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;