NAIZEA Fold Camp Cot for Adults Camping Bed Camp Cot Portable Heavy Duty Wide Sleeping Cots with Carry Bag for Camp Office Use
NAIZEA Fold Camp Cot for Adults Camping Bed Camp Cot Portable Heavy Duty Wide Sleeping Cots with Carry Bag for Camp Office Use
NAIZEA Fold Camp Cot for Adults Camping Bed Camp Cot Portable Heavy Duty Wide Sleeping Cots with Carry Bag for Camp Office Use
NAIZEA Fold Camp Cot for Adults Camping Bed Camp Cot Portable Heavy Duty Wide Sleeping Cots with Carry Bag for Camp Office Use
NAIZEA Fold Camp Cot for Adults Camping Bed Camp Cot Portable Heavy Duty Wide Sleeping Cots with Carry Bag for Camp Office Use

NAIZEA Fold Camp Cot for Adults Camping Bed Camp Cot Portable Heavy Duty Wide Sleeping Cots with Carry Bag for Camp Office Use

$69.99
$0.00
-$-69.99
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: NAIZEA
SKU: XK16ZDC-29BGRY
NAIZEA cots focuses on providing you with the best indoor and outdoor comfort and convenience. Our aim is to provide comfortable, high-quality, cost-effective products and services. Each NAIZEA cots products we choose carefully is through a long selection process and quality testing ,The 10 legs crossed-tubes structure has advantages of fine performance, durability and firmness,You don't need to assmble the cot,just open up it and press the step lock by foot till cots have been planted.You can make it less than 1 minute. The tilt angle design of the head of the folding cot ensures that there is no more back, neck or shoulder pain! Equipped with mattress, you can sleep more comfortably in this portable folding camping bed, Rugged steel tube frame and joints fold up in seconds for easy storage and travel; folding cot features a unique square high-strength steel tube design, Supports up to 880 lbs. Can carry 1 adult or 2 children to sleep on it. Also we have 1 year warranty and our own repair warehouse , hurry up and place an order.
  • Product detail :

    Removable cotton pads: Our folding beds and cotton pads can be disassembled, suitable for one-year use, and our cotton pads are designed with thick memory foam, which is more comfortable to lie on and not easy to deform.

    Material: Quality double layers 1200D polyester fabric and steel frame. The thicker oxford makes you can't feel the bars of tubes. The head of the cot slightly elevated as a headrest. Oval-Square shape tube is 1"

    Multipurpose of cots: You can use this sleeping cot both inside and outside.Such as office naps, travel rest or sunshine beach use.

    Easy to open up:You don't need to assmble the cot,just open up it and press the step lock by foot till cots have been planted.You can make it less than 1 minute.

    Design with bag: When our products are delivered to you, it is a carrying bag, which will better store and keep the products more clean.

    Breathable design: The materials used in our beds are more breathable, and the materials are safe, suitable for children, adults, and people with sensitive skin. It is a gospel for children and people with sensitive skin.

    The design of the two sides of the cushion: You can change the use surface of the cushion according to your favorite color, gray and blue, which are also more stain-resistant and white, you can use it at home or in the courtyard. At the same time, our mats can be taken down and placed on the ground at home to use as tatami.

  • Specification:

        Color: Gray / Blue

        Unfolded Dimension: 75"* 28"*14"

        Folded Dimension: 98 x 20(cm)/39'' * 8''

        Gross Weight: About 7kgs

        The Material of the Support Part: High Strength Steel Pipe;

        Fabric: Oxford Cloth Double Layer 1200DPVC, Strong and Durable;

  •  Main Features:

    High quality material, sturdy & durable

    Double layer 1200D high density striped Oxford cloth

    Four strong anti-sag reinforcement belts

    Wire right angle bandage

    1 inch bold square tube bracket

    Great Load-bearing ability, the load can reach 880lbs

    Foldable for easy carry and storage

    Wide application for indoor & outdoor use

     Perfect to be used at the park, beach, backyard, garden, campsite or other outdoor places

  • About transportation:

    Fast delivery: Shipment from US warehouse. Arrive in 3 to 10 days

  • Manufacture’s information

    About NAIZEA: We have many years of experience in designing and manufacturing patio furniture. Tons of choices would meet your needs and decorate your house greatly. We use high quality materials, which are durable, all weather&rust resistant. Ensure your long time using with a valued price. High quality and fashionable design is NAIZEA core competitiveness.

    1 Year Warranty: In addition to the 90 days warranty of Walmart, we will prolong the warranty period to 1 year to enhance your shopping experience. If there's any issue with the product, please feel free to contact our service team. Satisfactory solutions promised.

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.