🔥Sustainable & Reusable Food Preservation Tray - Keep Your Meals Fresh Longer! 🥰

$19.99
Color (Two Colors For Easy Sorting Of Vegetables And Meats):  Red
🔥Qty:  1 PC
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Quantity

Description

Take your kitchen to the next level!

Keep your food fresh easierand longer than ever with our innovative Eco Food Preservation Tray.

Forever reusable! Simply insert any food and close the top to create an airtightleakproof seal with absolutely zero-waste!

Say goodbye to plastic wrap!

The average US household uses 24 rolls of shrink wrap per year.

That's roughly, two boxes of shrink wrap, ranging from three to five pounds each, per month, which adds up to around $110 per year! 

Ditch the disposable food wrap and STOP throwing your money away, literally! 

We all love fresh food, but those brownish leftovers?... Not so much. With this innovative Eco Food Preservation Tray, your leftover food stays fresh for days.

The resistant film lid releases air from the tray after it's filled, keeping its contents fresher, and longer.

To use the Eco Food Preservation Tray, simply place your leftovers on the tray, cover, release the air, and lock the tray until you're ready to serve.  

💪Save money and reduce the amount of waste you produce!  

No more wrapping your food with shrink wrap and toxic aluminum!

This ingenious, space-saving, food-preserving tray is safe, durable, and Eco-friendly.

Foods such as meat, cheese, fish, fruits, etc. are perfectly covered by the ultra-resistant film in the lid and sealed in seconds.

Finally, no open packaging or unpleasant odors in the fridge.

💪Keep Food Fresh For A Long Time

Eco Food Preservation Tray is made with high-quality materials and an ultra-resistant elastic film in the middle.

This makes it easier to seal the food in seconds and release the air from the tray after it's filled. In this way, your food is kept fresh way longer.

At the same time, no open packaging and no unpleasant odors in your fridge.

💪Used For Many Types Of Foods

Whether you want to preserve fruits, meat, vegetables, sausages, cheese, pizza, fish or you want to keep fresh your pastries, these creative trays are the best solution for you. These vacuum storage trays will keep your food well preserved.

Ingeniously designed, the snap-on feature ensures convenience and secures your food from spilling. Perfect for home 🏠, camping ⛺️, parties, and more.

💪Stackable And Space Saver

The smart and creative design of the trays allows you to stack many of them and save a lot of space in your fridge.

Exquisitely designed with creativity, its elegant appearance makes it suitable for all occasions, whether it's for travel or for gatherings. It's a fantastic choice for any situation

💪High Quality, Resistant And Reusable

Food Preservation Tray is made with safe and high-quality materials. The plastic film is super resistant to penetration and compression.

You can use it many times without any worry.

💪Safe And Eco-Friendly

Last but not least, this new generation of trays is very safe and Eco-friendly.

No more wrapping your food with shrink wrap and toxic Aluminum.

This is a "buy once, use many times" product which saves you money and protects better the environment.

Unique Advantages

Buckle design makes it easy to seal food Keep your food fresh for a long time.

Stackable, space-saving quality materials, resistant and reusable safe and Eco-Friendly.

 

Features:

  • Airtight seal keeps your food fresh and prevents browning.

  • Doubles as a serving tray

  • Made of odor-proof, stain-resistant, BPA-free, elastic film

  • 100% leak-proof

  • Stackable, for optimal pantry or fridge organization

  • Size: 11.81*7.87in/30*20cm

  • Material: PP
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '222f2d98-43ad-4ce0-a235-da57ac5eb081'; this.isRTL = SPZ.win.document.dir === 'rtl'; } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = 'e534344a-84c7-4f20-b46a-97cc7a7591db'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == 'e534344a-84c7-4f20-b46a-97cc7a7591db' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);