Short Sleeve Lace Summer T-Shirt Dress with Pockets

$20.27
$22.30
-9%
Color:  Wine Red
Size:  S
Quantity

Description

SPU:2KOJSH832BA5

Pattern Type:Floral

Sleeve Type:Short Sleeve

Material:Cotton,Linen

Neckline:V neck

Process:Floral-print

Style:Casual

Color:Navy Blue,Wine Red,Purple,Coffee,Green,Black

Size:S,M,L,XL,XXL,3XL,4XL,5XL

Sleeve Length (cm):S:34, M:35, L:36, XL:37, XXL:38, 3XL:39, 4XL:40, 5XL:41

Shoulder (cm):S:38, M:39, L:40, XL:41, XXL:42, 3XL:43, 4XL:44, 5XL:45

Length (cm):S:65, M:66, L:67, XL:68, XXL:69, 3XL:70, 4XL:71, 5XL:72

Waist (cm):S:98, M:102, L:106, XL:110, XXL:114, 3XL:118, 4XL:122, 5XL:126

Bust (cm):S:96, M:100, L:104, XL:108, XXL:112, 3XL:116, 4XL:120, 5XL:124

Size Chart

SizeSleeve LengthShoulderLengthWaistBust
cminchcminchcminchcminchcminch
S3413.438156525.69838.69637.8
M3513.83915.4662610240.210039.4
L3614.24015.76726.410641.710440.9
XL3714.64116.16826.811043.310842.5
XXL38154216.56927.211444.911244.1
3XL3915.44316.97027.611846.511645.7
4XL4015.74417.371281224812047.2
5XL4116.14517.77228.312649.612448.8

We provide FREE STANDARD SHIPPING on orders over US$79

DELIVERY TIME:

Delivery time = Processing Time + Shipping Time

Processing time: 3-7 Business days

Shipping Countries: Worldwide

Shipping time: The waiting time frame will depend on where you're located and on the service type you're choosing.

Shipping Methods

Shipping Time

Costs

Standard Shipping

7-20 Business Day

$7.99 or $8.99(Free for US$79+)

 

ABOUT SHIPPING COUNTRIES:

Our logistics providers support shipping your order to USA, Canada, Australia, UK, and Europe.

NOTES:

PLEASE NOTE COVID-19 MAY BE CAUSING SHIPPING DELAYS WITH OUR COURIERS. WE CANNOT BE HELD RESPONSIBLE FOR ANY DELAYS OR DISRUPTIONS.

  1. Express Shipping is not available for P.O. Boxes and APO/FPO addresses.
  1. You will receive a notification once your order has been shipped. 
  1. If you have any further questions, please contact our customer services at hiyagroup@outlook.com
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.