wei
2020-12-09 16deafb8aca7709877907ba938ea31407f6d2834
HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomsManagementPageBLL.cs
@@ -26,14 +26,10 @@
        {
            skipAddRoomAction = (type, floor) =>
            {
                Room newRoom = new Room() {
                    uid = Guid.NewGuid().ToString(),
                };
                Room newRoom = new Room();
                editBackAction = () => {            
                    LoadRoomRow(newRoom);
                };
                var skipPage = new RoomEditPage(newRoom, StringId.AddRoom, editBackAction, null);
                MainPage.BasePageView.AddChidren(skipPage);
@@ -49,7 +45,7 @@
        {
            editBackAction = () =>
            {
                if (string.IsNullOrEmpty(r.uid))
                if (string.IsNullOrEmpty(r.roomId))
                {
                    for (int i = 0; i < roomsListView.ChildrenCount; )
                    {