Keep cool
Find all day comfort in the La Jolla Short. Designed in a lightweight linenwith a smocked waistband, this airy summer short was madeto transition you from a morning coffee run to an afternoon dip. Complete with an adjustable front tie and a relaxed fit. Top it off with the Lac De Sainte Criox Top or the Mykonos Sarong as a top.
Features:
Smocked waistband
Adjustable front tie
Relax fit
Unlined, slightly sheer
Length:
P: 14.5'
S: 15'
M: 15.5'
L: 16'
V: 16.5'
Care:
Click '
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"1100554",
"cartNum":qty,
"new":0
};
if(key){
data.uniqueId = skus[key].unique;
}
if(unique){
data.uniqueId = unique;
}
$.ajax({
url:"?m=jqajax&act=addtocart",
method:"POST",
dataType:"JSON",
data:data,
success :function(e){
layer.closeAll();
console.log(e.error);
if(e.error == 0){
$(".right-mini-cart-box").html(e.html);
$(".CartCount").html(e.data.count);
$('.drawer-toggle-cart').trigger("click");
}else{
layer.msg(e.msg);
}
}
});
}
function addto_sku(qty,skus,key){
$.ajax({
url:"?m=jqajax&act=addto_sku",
method:"POST",
dataType:"JSON",
data: {
id:'1100554',
sku: key,
},
success :function(e){
if (e.unique){
let unique = e.unique.replace(/'/g, '');
addtocart(qty,"","",unique);
}
}
});
}
$(".cart-wishlist").click(function(){
$.ajax({
url: "?m=jqajax&act=addwish",
method: "POST",
dataType: "JSON",
data: {
id:'1100554'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});