Western Cowgirl Floral Ethnic Print Lace-up Vintage Dress

$43.29
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
ProductNo SP250224AEMC
Fit Regular
Sleeve Length Long Sleeve
Design concept (elements) flowers
Occasion Leisure,Beach,Daily,Casual
Collar/Neckline V-neck
Skirt Length Midi
Material Cotton Linen Blend
Season Spring,Summer,All Season
Yards (cm) S M L XL 2XL 3XL 4XL 5XL
UK8/1012/14161820222426
US4/68/10121416182022
EU36/3840/42444648505254
Bust889398103108113118123
Waistline68737883889398103
Hips9499104109114119124129
Shoulder Width3839.2540.541.754344.2545.546.75
Weight-kg45-5055-6065-7075-8085-9095-100105-110115-120


       

ingshows Western Cowgirl Floral Ethnic Print Lace-up Vintage Dress ProductNoSP250224AEMCFitRegularSleeve LengthLong SleeveDesign concept (elements)flowersOccasionLeisure,Beach,Daily,CasualCollar/NecklineV-neckSkirt LengthMidiMaterialCotton Linen BlendSeasonSpring,Summer,All SeasonYards (cm)SMLXL2XL3XL4XL5XLUK8/1012/14161820222426US4/68/10121416182022EU36/3840/42444648505254Bust889398103108113118123Waistline68737883889398103Hips9499104109114119124129Shoulder Width3839.2540.541.754344.2545.546.75Weight-kg45-5055-6065-7075-8085-9095-100105-110115-120 43.29
1
Select product
Selected 0 item(s)
Photo Color/ XS
Photo Color/ S
Photo Color/ M
Photo Color/ L
Photo Color/ XL
Photo Color/ 2XL
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)