ijuicy Murphy Bed with 2 Side Cabinet, Foldable Wall Bed for Bedroom, Fold Up Murphy Cabinet Bed, Queen Size Murphy Chest Bed Can Be Folded into a Cabinet, Storage Bed For Home/Office/Studio Dark Grey
ijuicy Murphy Bed with 2 Side Cabinet, Foldable Wall Bed for Bedroom, Fold Up Murphy Cabinet Bed, Queen Size Murphy Chest Bed Can Be Folded into a Cabinet, Storage Bed For Home/Office/Studio Dark Grey
ijuicy Murphy Bed with 2 Side Cabinet, Foldable Wall Bed for Bedroom, Fold Up Murphy Cabinet Bed, Queen Size Murphy Chest Bed Can Be Folded into a Cabinet, Storage Bed For Home/Office/Studio Dark Grey
ijuicy Murphy Bed with 2 Side Cabinet, Foldable Wall Bed for Bedroom, Fold Up Murphy Cabinet Bed, Queen Size Murphy Chest Bed Can Be Folded into a Cabinet, Storage Bed For Home/Office/Studio Dark Grey
ijuicy Murphy Bed with 2 Side Cabinet, Foldable Wall Bed for Bedroom, Fold Up Murphy Cabinet Bed, Queen Size Murphy Chest Bed Can Be Folded into a Cabinet, Storage Bed For Home/Office/Studio Dark Grey

ijuicy Murphy Bed with 2 Side Cabinet, Foldable Wall Bed for Bedroom, Fold Up Murphy Cabinet Bed, Queen Size Murphy Chest Bed Can Be Folded into a Cabinet, Storage Bed For Home/Office/Studio Dark Grey

$2,299.99
$0.00
-$-2,299.99
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Ijuicy
SKU: 160052211B/160052212B/160052213B/160073210B*2#iju

【High Quality Materials】Our Queen Size Murphy bed is made of high quality laminated chipboard materials, which can be more stable. The drawn cabinet bed can bear 500 pounds. Don't worry about your height and weight.

【No Spring Box Required】The wall bed is equipped with supporting wooden slats. You can put your mattress directly on it without spring box, which is convenient and quick. Mattress thickness can be 8-10 inches (no excluding mattress)

【Shipping Note】This queen size murphy bed cabinet is delivered by 5 packages containing with different parts(2 packages are side cabinets and 3 packages are the split part of the murphy bed). You need to wait for 3 murphy bed packages to arrive before you can assemble them.If you find a lack of accessories during installation, please contact us in time, and the customer service specialist will reply and solve your problem within 24 hours.

【Easy Assembly】Our hidden bed professional assembly and installation is highly recommended. For safe installation, it is necessary to connect the wall bed to at least 2 wall columns, on the upper and lower plates, so as to stabilize the folding of the cabinet bed.

【Space Saving】 Our murphy chest bed very suitable for multi-function rooms. When folding the horizontal murphy bed, the cabinet size is 97.08"D x 16.93" W x 84.45 "H. When opened, the size of the pull-out bed is: 80.7"D x 60"W x 14"H.

【Easy to Use】 Thanks to the dual piston system, the hideaway bed can be folded up and down safely in a few seconds. When the mattress falls to a certain angle, it will automatically fall with inertia without manual operation.

 

  • Brand: ijuicy
  • Color: Dark Grey
  • Bed Size:Queen Size
  • Product Dimensions: Cabinet:97.05"L x 16.93"W x 84.45"H Bed:80.7"D x 60"W x 14"H
  • Style:Modern
  • Special Feature: Foldable Design, Stable Wood&Metal Frame, Space Saving
  • Room Type:Bedroom, Guest Room, Apartment
  • Max capacity:550lb
  • Material: Wood, Metal
  • Assembly Required:Yes
Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.