Women Mini Dress 2020 Spring New V-neck Floral Chiffon Dress High Waist Flare Sleeve Female Dress Woman's Dress KarolyiDora KA88

5 sold
$20.14
$39.83
-$19.69
Size- S
Color- Mini dress
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
people are viewing this right now
Shipping
Estimated Delivery:May-06 - May-10
Vendor by: aliexpress
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = 'dd3fdee5-faab-4149-847f-c1c552fc8eae'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // 加购中状态 } 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 = '16831958-1382-43ab-bf53-ddbd68e4260b'; 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 == '16831958-1382-43ab-bf53-ddbd68e4260b' && 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(); }); // 加购事件 this.registerAction('handleAddToCart', (invocation) => { // 阻止事件冒泡 const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // 如果正在加购中,直接返回 if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // 加购方法 async addToCart(quantity) { // 设置加购中状态 this.isAddingToCart_ = true; const productId = '16831958-1382-43ab-bf53-ddbd68e4260b'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // 触发加购成功提示 this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // 无论成功失败,都重置加购状态 this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // 触发加购成功提示 triggerAddToCartToast_() { // 如果主题有自己的加购提示,则不显示 const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // 显示应用的加购成功提示 this.showToast_("Added successfully"); } 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);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("Added successfully"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
Description

Brand Name: KarolyiDora

Silhouette: A-LINE

Origin: CN(Origin)

Season: Spring

Neckline: V-Neck

Sleeve Style: Cloak Sleeves

Decoration: None

Style: Office Lady

Dresses Length: Above Knee, Mini

Material: Chiffon

Age: Ages 18-35 Years Old

Profile Type: A

Model Number: 45645+5

Closure Type: Lace

Sleeve Length(cm): Full

Type: Regular

Release Date: Spring 2021

Fabric Type: Chiffon

Gender: WOMEN

Material Composition: Synthetic Fiber

Waistline: empire

Pattern Type: Floral

RM33133439312065188

Hello Dear, Thanks very much for your attention about our store, please check the size information and address before order. Our processing time is 1-3 working days when the payment confirmed. So do please confirm everything before we ship out. Most of our products are in stock, only few items maybe updated delay about the stock informations, but we will reply you very soon.If you are a wholesaler, please contact us before you order to get the best discount,Any questions, please feel free to contact us, we will reply you in 24 hours. Enjoy your shopping time! *^0^*

1Measurement In CM

size

Shoulder(cm)

Bust(cm)

Waist(cm)

Hips (cm)

Sleeve(cm)

Length(cm)

S

37

86

66

94

56

87

M

38

90

70

98

57

87

L

39

94

74

102

57

87

XL

40

98

78

106

58

87

XXL

41

102

82

110

58

87

2Measurement In Inch

size

Shoulder(in.)

Bust(in.)

Waist(in.)

Hips (in.)

Sleeve(in.)

Length(in.)

S

14.57

33.86

25.98

37.01

22.05

34.25

M

14.96

35.43

27.56

38.58

22.44

34.25

L

15.35

37.01

29.13

40.16

22.44

34.25

XL

15.75

38.58

30.71

41.73

22.83

34.25

XXL

16.14

40.16

32.28

43.31

22.83

34.25



Payment A. Payment is expected to be received within 3 days of auctions close. B. Escrow is our preferable payment method, we also accept different payments by T/T, Western union, Money gram. 9 Shipping A. We will ship out within 1-3 working days after received the payment except holidays. Usually we will ship items by AliExpress Standard Shipping, it takes 9--20 Business days to arrive after shipping. B. If you want fast shipping by (EMS,DHL ,UPS. FedEx) you have to pay the additional charge . C. If you order total price more than $300.00 at a time, I will free send them by express(EMS,DHL ,UPS. FedEx).the shipping time is 3-7 day. Feedback We will do our best to offer high quality , reasonable and competitive price products . Also, it's my goal to provide you my dear customers with excellent shopping experience and 100% satisfied good service. Please contact us immediately if you have any problems when you receive the items you won on my store. Positive feedback is greatly appreciated and we will do the same in return. If you are unhappy for any reason, please do not leave Negative or Neutral Feedback and allow us the opportunity to make you happy.


You may also like