💥Summer Special Offer💥10000/12000 BTU U-Shaped Window Air Conditioner, Fast Cooling Low Noise Window AC Unit with Remote Control, 115V Energy Saving AC for Home Bedroom Living Room

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 = "a30dd26b-1b1f-40b8-ac19-e19a4acc9dc3"; // 促销活动数据 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 == '966cefb6-f66b-4654-83f3-bbe6f5308832' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "966cefb6-f66b-4654-83f3-bbe6f5308832", 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);
€79.99
€399.99
-€320.00
people are viewing this right now
Size::  10000BTU-U-shaped
Quantity
/** @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);
Worldwide delivery
Secure payments
Visual logistics tracking
Free returns
Shipping

Description

✅ Beat The Heat In Minutes | No More Stuffy Rooms!

Tired of sweltering hot rooms and bulky, ugly window ACs that block your view? This U-Shaped Window Air Conditioner is your perfect summer savior! Available in 10000 BTU & 12000 BTU, it delivers instant fast cooling for rooms up to 550 sq. ft. Cool down your bedroom, living room or apartment in minutes, enjoy fresh cool air all summer long!

🔥 Why Choose Our U-Shaped AC?

  • Unique U-Shaped Design = Keep Your Window View! Unlike traditional AC units that fully block windows, our hollow U-shape lets youkeep windows partially open. Enjoy natural fresh air and unobstructed scenery while cooling your room! No more closed, stuffy space.
  • Ultra Quiet Sleeping Cooling Runs as low as 42dB (12000 BTU) / 45dB (10000 BTU). Whisper-quiet operation won’t disturb your sleep, work or study. Perfect for bedrooms, nurseries and home offices!
  • Powerful Fast Cooling & Dehumidifying 10000 BTU (50 Pints dehumidification) & 12000 BTU (72 Pints dehumidification) powerfully cool and remove sticky humidity. Say goodbye to muggy, sweaty summer days!
  • Save Big On Electric Bills Built-in Energy Saver Mode + 230V EU high-efficiency design. Powerful cooling but low power consumption. Cool your home freely without worrying about sky-high electricity fees!
  • 6-in-1 All-Day Comfort Modes Cool / Dry / Fan / Auto / Sleep / Energy Saver. Adjustable temp 62°F–90°F + 24H timer. Customize perfect temperature for day, night and sleep time.
  • Super Easy Installation & Use Bracket-free design! No drilling, no complicated tools. Simply place on your windowsill for quick setup. Comes with remote control & touch panel, adjust settings effortlessly anywhere in the room.

📋 2 Exact Models For Your Choice

10000 BTU U-Shaped AC

Cooling Power: 10000 BTU | Dehumidification: 50 Pints | Noise: 45dB | Size: 28.94"D x 18.7"W x 14.96"H | Voltage: 230V (EU Standard)

12000 BTU U-Shaped AC

Cooling Power: 12000 BTU | Dehumidification: 72 Pints | Noise: 42dB | Size: 28.94"D x 18.7"W x 14.88"H | Voltage: 230V (EU Standard) | Weight: 66.91 lbs

🏡 Perfect For All Scenes

Ideal for bedrooms, living rooms, apartments, dorms, home offices and kitchens. Compact stylish white & black design fits all home decoration styles!

💥 Summer Must-Have! Grab It Now & Enjoy Cool Summer!

Stop suffering from summer heat! This high-value, quiet, energy-saving U-shaped window AC brings you constant cool comfort.Stock limited, buy now before the hot summer rush!