Celebrate 2025 Print Slip Dress

$36.29
$62.70
-$26.41
Color:  Dress3
Size:  S
Quantity

Description

Category: Dress

Pattern:Yes

Thickness:Conventional

Elasticity:Non Stretchy

Scenes:Daily/ Holiday /Going Out

Material:Polyester

Season: Spring /Summer/Autumn

Style:Casual
Size Chart:

SizeLengthChestShoulder
cminchcminchcminch
S8232.288834.652911.42
M8332.689336.613011.81
L8433.079838.583112.20
XL8533.4610340.553212.60
2XL8633.8610842.523312.99
3XL8734.2511344.493413.39
4XL8834.6511846.463513.78
5XL8935.0412348.433614.17

Dress1 Size Chart:

SizeBustLengthWaist
cminchcminchcminch
S87 34.3 130 51.2 66 26.0 
M91 35.8 131 51.6 70 27.6 
L95 37.4 132 52.0 74 29.1 
XL99 39.0 133 52.4 78 30.7 
2XL103 40.6 134 52.8 82 32.3 
3XL107 42.1 135 53.1 86 33.9 
4XL111 43.7 136 53.5 90 35.4 
5XL115 45.3 137 53.9 94 37.0 

Dress2 Size Chart:

SizeBustLengthWaist
cminchcminchcminch
S8633.9 7027.6 6726.4 
M9035.4 7128.0 7128.0 
L9437.0 7228.3 7529.5 
XL9838.6 7328.7 7931.1 
2XL10240.2 7429.1 8332.7 
3XL10641.7 7529.5 8734.3 
4XL11043.3 7629.9 9135.8 
5XL11444.9 7730.3 9537.4 

Dress3 Size Chart:

SizeBustLength
cminchcminch
S8633.9 7429.1 
M9035.4 7529.5 
L9437.0 7629.9 
XL9838.6 7730.3 
2XL10240.2 7830.7 
3XL10641.7 7931.1 
4XL11043.3 8031.5 
5XL11444.9 8131.9 

Set1 Size Chart:

SizeBustLengthWaist
cminchcminchcminch
S8633.9 12850.4 6726.4 
M9035.4 12950.8 7128.0 
L9437.0 13051.2 7529.5 
XL9838.6 13151.6 7931.1 
2XL10240.2 13252.0 8332.7 
3XL10641.7 13352.4 8734.3 
4XL11043.3 13452.8 9135.8 
5XL11444.9 13553.1 9537.4 

Set2 Size Chart:

SizeBustTop LengthPants LengthWaist
cminchcminchcminchcminch
S11043.3 7629.99838.6 6626.0 
M11444.9 7730.39939.0 7027.6 
L11846.5 7830.710039.4 7429.1 
XL12248.0 7931.110139.8 7830.7 
2XL12649.6 8031.510240.2 8232.3 
3XL13051.2 8131.910340.6 8633.9 
4XL13452.8 8232.310440.9 9035.4 
5XL13854.3 8332.710541.3 9437.0 

 

 

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.