| | |
| | | return; |
| | | } |
| | | } |
| | | SpatialInfo.CurrentSpatial.AddRoom(room); |
| | | room.SaveRoomData(); |
| | | backAction(); |
| | | this.RemoveFromParent(); |
| | | var addResult = SpatialInfo.CurrentSpatial.AddRoom(room); |
| | | if (addResult == StateCode.SUCCESS) |
| | | { |
| | | backAction(); |
| | | this.RemoveFromParent(); |
| | | } |
| | | } |
| | | if (btnOption.TextID == StringId.DeleteRoom) |
| | | { |
| | | Action action = () => |
| | | { |
| | | foreach (var f in DB_ResidenceData.functionList.GetAllFunction()) |
| | | var delResult = SpatialInfo.CurrentSpatial.DelRoom(room); |
| | | if (delResult == StateCode.SUCCESS) |
| | | { |
| | | if (f.roomIds.Contains(room.uid)) |
| | | foreach (var f in DB_ResidenceData.functionList.GetAllFunction()) |
| | | { |
| | | f.roomIds.Remove(room.uid); |
| | | if (f.roomIds.Contains(room.roomId)) |
| | | { |
| | | f.roomIds.Remove(room.roomId); |
| | | } |
| | | } |
| | | //删除事件回调 |
| | | this.deleteAction?.Invoke(); |
| | | this.RemoveFromParent(); |
| | | } |
| | | SpatialInfo.CurrentSpatial.DelRoom(room); |
| | | // backAction(); |
| | | // DB_ResidenceData.DelRoom(room); |
| | | //删除事件回调 |
| | | this.deleteAction?.Invoke(); |
| | | this.RemoveFromParent(); |
| | | }; |
| | | new PublicAssmebly().TipMsg(StringId.Tip, StringId.DeleteRoomTip, action); |
| | | }; |
| | |
| | | { |
| | | btnFloorInfo.Text = room.floorName; |
| | | }; |
| | | var residentialManagePage = new FloorsManagementPage(floorsCallBackAction); |
| | | var residentialManagePage = new RoomBinglingFloorPage(floorsCallBackAction, room); |
| | | MainPage.BasePageView.AddChidren(residentialManagePage); |
| | | residentialManagePage.LoadPage(room, StringId.FloorAssignment); |
| | | residentialManagePage.LoadPage(); |
| | | MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; |
| | | }; |
| | | btnFloorInfo.MouseUpEventHandler = eventHandler; |
| | |
| | | { |
| | | try |
| | | { |
| | | MainPage.Log("SelectPicture 裁剪图片返回路径: " + selectImagePath); |
| | | //MainPage.Log("SelectPicture 裁剪图片返回路径: " + selectImagePath); |
| | | //1.读取裁剪后的图片,然后删除 |
| | | var imageBytes = Shared.IO.FileUtils.ReadFile(selectImagePath); |
| | | System.IO.File.Delete(selectImagePath); |
| | |
| | | var newImageName = mRoom.roomName.Trim() + ".png"; |
| | | var uploadImageObj = new UploadImageObj() |
| | | { |
| | | prefix = "ONR", |
| | | prefix = "Room" + Utlis.GetTimestamp(), |
| | | fileName = newImageName, |
| | | uid = mRoom.uid, |
| | | content = imageBytes, |
| | |
| | | //上传成功 |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | Utlis.WriteLine("上传成功:" + imageUrl); |
| | | //Utlis.WriteLine("上传成功:" + imageUrl); |
| | | //1.2如果是自定义图片删除之前的 |
| | | if (!string.IsNullOrEmpty(imageView.ImagePath) && !imageView.ImagePath.Contains("Classification/Room/Roombg")) |
| | | { |
| | | Utlis.WriteLine("删除: " + imageView.ImagePath); |
| | | //Utlis.WriteLine("删除: " + imageView.ImagePath); |
| | | System.IO.File.Delete(imageView.ImagePath); |
| | | } |
| | | //重命名保存 |
| | | FileUtils.WriteFileByBytes(imageUrl, imageBytes); |
| | | Common.FileUtlis.Files.WriteFileByBytes(imageUrl, imageBytes); |
| | | imageView.ImagePath = null; |
| | | imageView.ImageBytes = imageBytes; |
| | | //上传成功 |