Summer Retro Strapless Tube Dresses For Women Boho Floral Print Beach Pleated Cover Ups Sundress Vintage Smocked Beach Dress

Sold 324 only 999999+ item(s) left
$38.98
Color:  Black
Size:  S
Quantity
Free worldwideFree shipping on orders over $34
Free returns
Sustainably made
Secure payments
Description
Material Composition : synthetic fiber
Release Date : Winter 2022
Closure Type : Pullover
Fabric Type : cotton blend
Type : Camisole
Age : Ages 25-35 Years Old
Place Of Origin : China (mainland)
Model Number : women dress
Season : Summer
Neckline : slash neck
Waistline : Elastic Waist
Sleeve Style : Spaghetti Strap
Dresses Length : Above Knee, Mini
Decoration : belt
Sleeve Length(cm) : short
Pattern Type : Floral
Silhouette : A-LINE
Style : Beach Style
Material : POLYESTER,SPANDEX
Gender : WOMEN

Elasticity : Slight Strech
Fit Type : Regulai Fit




Summer Dresses For Women Beach Cover Ups Sexy Strapless Tube Tops Boho Floral Print Sundress Smocked Beach Dress


Features:



  • 【MATERIAL】Made of 95% polyester and 5% Spandex,lightweight and stretchy,soft and comfy to wear.This dress is light but not see-through, not heavy even in the sultry weather.


  • 【UNIQUE DESIGN】Printed Maxi Dress For Women/Short Sleeve Boho Dresses/Ruffled Hem A-Line Dress/High Waist Swing Dress/Wrap V Neck Bohemian Dress/Tiered Flowy Dress For Women/Swing Dress With Belt/Summer Dress For Women/Fit And Flare Dress For Women/Lightweight Chiffon Maxi Dress/Beach Maxi Dress For Women


  • 【ALL-MATCH】This casual dress for women will perfectly meet all your fashion style meet whatever you pair with, like small accessories, jackets, denim outfits, leather outwear, coat, cardigan, high heels, sandals, sneakers, flats, even flip flop.This women dress always can create a variety of style and adapt to different temperatures and every season spring summer fall winter.


  • 【OCCASION】You will catch everyone's attention every occasions with the gorgeous dress - Combines with sneakers and sandals, a daily outfit is completed, nicely for casual style, daily look, home, shopping, hang out, lounging, vacation, holiday, beach; with exquisite accessories/jewelry, a clutch, high heels. You're the star at every event, like party, cocktail, clubwear, night out, evening, dinner, romantic date, wedding, cruise.


  • Tips:The rayon material may be wrinkled, please wash the cover up dress by hand. Iron it after washing and Hang up to reduce wrinkles.



Product Description:


Season: Summer


Gender: Women


Material: Polyester


Decoration: Pleat


Clothing Length: Regular


Pattern Type: Print


Style: Fashion,Causal


1PC Dress
























































Size US Size UK Size EU Size Bust Length
S 4 8 34 60cm/23.62'' 77cm/30.31''
M 6 10 36 64cm/25.20'' 78cm/30.71''
L 8 12 38 68cm/26.77'' 79cm/31.10''
XL 10 14 40 72cm/28.35'' 80cm/31.50''
XXL 12 16 42 77cm/30.31'' 81cm/31.89''














































Size:S US Size:4 UK Size:8 EU Size:34 Bust:60cm/23.62'' Length:77cm/30.31''
Size:M US Size:6 UK Size:10 EU Size:36 Bust:64cm/25.20'' Length:78cm/30.71''
Size:L US Size:8 UK Size:12 EU Size:38 Bust:68cm/26.77'' Length:79cm/31.10''
Size:XL US Size:10 UK Size:14 EU Size:40 Bust:72cm/28.35'' Length:80cm/31.50''
Size:XXL US Size:12 UK Size:16 EU Size:42 Bust:77cm/30.31'' Length:81cm/31.89''























Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.