Bohemian Style Women's Plant Flower Embroidery Loose Fit Wide Leg Straight Leg Denim Long Pants

$56.99
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 = "233fe71f-a69e-4bc1-8346-8db46427a8db"; // 促销活动数据 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"); if (this.flashsaleData.product_setting.is_redirection && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(`/promotions/discount-default/${this.flashsaleData.discount_info.id}`); } } // 绑定 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 == '75b8bb74-e4c8-4e7e-ac0a-4658686399b5' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "75b8bb74-e4c8-4e7e-ac0a-4658686399b5", 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);
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '233fe71f-a69e-4bc1-8346-8db46427a8db'; 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 = '75b8bb74-e4c8-4e7e-ac0a-4658686399b5'; 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 == '75b8bb74-e4c8-4e7e-ac0a-4658686399b5' && 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);
Color:  Black
Size:  S
Quantity

Description

SPU: DZ-231433-ZLL

Fabric Name: 50% Cotton-50% Spandex

Pattern: Rose Floral

Process: Pocket

Style: Casual

Length: Long

Popular Elements: Embroidery Art, Loose

Occasion: Daily

Theme: All Seasons

NOTE: If you are not sure, please choose a larger size. If you have any doubts about this product, we suggest you contact our customer service team. Due to the color difference between the screens of different electronic devices (computers, mobile phones or ipads), especially the CRT screen and the LCD screen, the color of the item may be slightly different from what you see in the photos, please take the actual product as the standard.

SizeWaistHipLength
cminchcminchcminch
S7228.110741.710541.0
M7730.011243.710641.3
L8232.011745.610741.7
XL8733.912247.610842.1
2XL9235.912749.510942.5
3XL9737.813251.511042.9
4XL10239.813753.411143.3
5XL10741.714255.411243.7
Due to manual measurement, there may be an error of 1-3cm

Delivery Process

As soon as your order has been shipped, we will send you a notification email with the tracking details. You can use this information to track your order's progress and know when to expect it.

Upon receipt of your order, we will process and arrange for shipment as soon as possible.Order processing time is approximately: 1 - 3 business days, depending on the number of items in stock and the time frame for restocking.

Orders over $69 ship for free shipping. Orders under $69 ship for standard shipping with flat rate charge of $9.99.

COUNTRY

RATE

(Standard Shipping)

ORDER OVER $69 

(After Discount)

TRANSIT TIME

(Business Days)

United States$9.99Free9-12 Days
Canada$9.99Free9-12 Days
Australia$9.99Free9-12 Days
United Kingdom$9.99Free9-12 Days
Rest Of Worrld$9.99Free9-12 Days

Order Delivery Time=Order Processing Time+Shipping Time

For example, if you order a Hoodie, it will need 1 - 3 business days of processing time and 9 - 12 business days of shipping time. Therefore, you are expected to receive it in 10 - 15 business days.

Note: Note: Delays in shipping may occur with some orders! Due to holidays or website promotions, there is a short-term surge in sales of certain items, resulting in shipping delays caused by insufficient stock quantities.(If you have any questions, please contact customer service to get the specific shipping time of your order!)

 

International Shipping

  • We offer worldwide delivery except for the following non-delivering countries.
  • Thailand, India, Brazil, Mexico, Dominica, Reunion, Iraq, Mozambique, French Guiana, French Polynesia, Panama, Maldives, Ecuador, Guadeloupe, Martinique, Palau, Turks and Caicos Islands, Seychelles, Mauritius, Trinidad and Tobago, Zambia, Cote d'Ivoire.

 

Taxes

  • Except for the United States, some countries/regions have already charged 10% tax at checkout, and the courier company will no longer charge customers.
  • (Such as the UK and EU 27 countries: Austria, Belgium, Bulgaria, Hungary, Germany, Greece, Denmark, Ireland, Spain, Italy, Cyprus, Latvia, Lithuania, Luxembourg, Malta, Netherlands, Poland, Portugal, Romania, Slovakia, Slovenia, Finland, France, Croatia, Czech Republic, Sweden, and Estonia) Except for the above countries, if others need to pay import taxes, customs duties and related customs fees for imports. These fees (if applicable) are determined and collected by the customs of the destination country. For more detailed information on charges, please contact your local customs directly.

 

Order Tracking

  • After the order is shipped, we will send you a shipment confirmation email containing the order tracking number and tracking link, you can check the tracking information yourself.
  • If you have any questions or need help, please contact our online customer in the first instance at 

 

Add Information

  • We process orders Monday - Friday (business days), weekends and holidays are postponed.
  • All delivery times are for customer reference only and are subject to unforeseen factors.We are not responsible for delays due to (weather, delivery carrier factors, delays related to customer error and holidays, etc.) or any other unforeseen factors.


Note: vipsshops is not responsible for delivery failures due to negligent customer behavior. Negligence includes, but is not limited to, refusal of shipment confirmation and incorrect consignee information (e.g., address, contact number, or consignee name). We will not be able to refund you for lost merchandise caused by such circumstances. If you find that your order information is incorrect, please contact us at : support@vipsshops.com in the first instance and provide us with your order number and correct consignee information.

 

Returns for Refunds

If you receive a product that is damaged or defective in any way, please contact us immediately. We will work with you to resolve the issue and ensure you receive a replacement or refund.

Email: 

Time: (Business Days) Mon - Fri 9:00am - 6:00pm (EST)

Note: (Any address on the parcel is not our actual return address, please contact our after-sales customer service to get the correct address if you need to return the goods, we will not refund the parcel lost due to private return.)