[$37.99 TODAY ONLY] (Full or King Size) Air Mattress with Frame and Rolling Box

$27.95  - $57.95
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "00338cee-0e15-4ae2-9bf2-057f759baf64"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); const setting = this.flashsaleData.product_setting; const landingUrl = `/promotions/discount-default/${this.flashsaleData.discount_info.id}`; const finalUrl = appDiscountUtils.resolveDiscountHref(setting, landingUrl); if (finalUrl && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(finalUrl, '_blank', 'noopener'); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == 'f216b3d4-9b40-4b5d-80d6-22de4e984b29' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "f216b3d4-9b40-4b5d-80d6-22de4e984b29", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);
Color:  White
Size:  King Size
Quantity
people are viewing this right now
Shipping
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

Description

🎉🎉Why are our products so discounted? Full clearance: In the past two years, due to the impact of the epidemic, our store has a backlog of inventory, and a large number of warehouses have been closed. That's why they sell to us at a lower price and we can sell to them at a huge discount.

 

Air Bed 

  • Bed Built-In Pump Automatically Inflates and Deflates Airbed In Less Than 4 Minutes, Pump Features Auto Shut-Off Options (Plush, Medium, Firm) To Reach A Desired Comfort Level with Ease
  • Self-Deploying Frame Design Allows User To Simply Unzip Case, Plug Into Wall, Turn On, And Walk Away For Easy Set Up
  • Durable Polyester Mattress Top with 40 circular coils provides a Soft and Comfortable Sleep Surface That Also Keeps Your Sheets in Place
  • Bed Deflates and Folds in to a Duffle Bag With Wheels For Convenient Travel And Storage; Bed Fits Standard Twin Sheets.
Product Specification (Full Size)
  • Inflated Dimensions: 80 x 55 x 24 inches
  • Rolling duffel storage case included (34 x 15 x 22 inches)
  • Weight: 46 Lb
  • Weight Capacity: 400 lbs.
  • Power: 120V / 60Hz / 130W
  • Conforms to UL / CSA Standards
Product Specification(King Size)
  • Inflated Dimensions: 81 x 73 x 24 inches
  • Rolling duffel storage case included (45 x 15.5 x 22.5 inches)
  • Weight: 55 Lb
  • Weight Capacity: 600 lbs.
  • Power: 120V / 60Hz / 130W
  • Conforms to UL / CSA Standards

Get a Real Bed that You Can Store Effortlessly

All the comfort of a regular guest bed in a design that folds into a compact package that travels effortlessly and stores almost anywhere. Sets up in minutes with almost no work required, then folds away just as easily. The durable construction ensures continuous comfort for years to come.

  • 40 circular coils create a comfortable sleeping surface
  • Durable puncture proof polyester top
  • Self-deploying design allows user to simply plug into wall, turn on, and walk away for easy set up

EASY TO INFLATE, EASY TO STORE

Self-deploying design with three levels of comfort settings quickly inflates and deflates, then stores away easily when not in use.

DURABLE MATTRESS TOP

A great night’s sleep is practically ensured with the durable mattress top and 40 circular coils chamber. Provides a soft and comfortable sleep surface ensuring your comfort throughout the night.

BUILT TO LAST

Heavy-duty PVC resists punctures and prevents air leakage. So durable, we fully back it for 1-year.

SETUP IN MINUTES

Automatic inflation means you can save your breath. Have a guest bed ready to go in under 4 minutes!

THE COMFORT OF A STANDARD BED

A sturdy frame raises the bed to a height of 24", just like a regular bed, while the 40 coils provide full-body support. Also fits standard sheets!

YOU CAN TAKE IT WITH YOU

Fits into its own wheeled duffel bag to make travel a breeze, and the integrated pumps mean no extra baggage.

Our original intention

Provide interesting, stylish and high quality products in the world. We will do our best to provide our customers with superior customer service support as we absolutely value zero risk customer satisfaction.

Global Shipping Insurance: Each order includes real-time tracking details and coverage to prevent packages from being lost or stolen in transit.

24/7 Customer Support: We have a field team ready to help you with any questions you may have within a 24-hour time frame, 7 days a week. We'd love to hear from you

Secure and secure checkout: We use state-of-the-art SSL secure encryption to protect your personal and financial information.

If you buy it and don't think it's right for you, don't worry. We will correct it by providing you with a replacement or refund. 100% simple risk-free process.