Werdau

Werdau

€23.16 €28.95
Flash Vente
Couleur: Gris-Noir
Couleur: Gris-Noir
tableau des tailles
Disponible en solaire
Garantie de 365 jours
Vision de loin, Vision de près, Verres progressifs ou Sans correction
function getGlassesInfo(type) { const glassesInfo={ product:{ title: "Werdau", id: "82a1692e-f98b-4a0d-9be5-d308ea28f308", image: {"src":"\/\/img.staticdj.com\/aee75cf2bcabfb924f1f8235e4a65880.jpg","path":"aee75cf2bcabfb924f1f8235e4a65880.jpg","width":1500,"height":750,"alt":"","aspect_ratio":2}, variants: [{"id":"2b6af67b-c866-4780-917d-758eec97ad4b","product_id":"82a1692e-f98b-4a0d-9be5-d308ea28f308","title":"Gris-Noir","weight_unit":"g","inventory_quantity":5,"sku":"FJGX397356-01","barcode":"","position":1,"option1":"Gris-Noir","option2":"","option3":"","note":"","image":null,"wholesale_price":[{"price":23.16,"min_quantity":1}],"weight":"18.3","compare_at_price":"28.95","price":"23.16","retail_price":"28.95","available":true,"url":"\/products\/fjgx397356-01?variant=2b6af67b-c866-4780-917d-758eec97ad4b","available_quantity":5,"options":[{"name":"Couleur","value":"Gris-Noir"}],"off_ratio":20,"flashsale_info":[],"sales":3}] }, atcType:type }; return Promise.resolve({...glassesInfo}); } exportFunction('open', getGlassesInfo ); Non-Prescription Choisir ses verres
Produit Description
Afficher en pouces Afficher en mm
  • Longueur totale
  • Largeur des verres
  • Hauteur des verres
  • Taille du pont
  • Longueur des branches
  • Modèle: Femmes
  • Bord: Cerclée
  • Matière: Matériaux mixtes
  • Forme: Carré
  • Poids: 18.30g
  • Vision:-20.00~+12.00
  • zone de EP:54~78
  • Progressif: Oui
  • Charnière à ressort: Non

Montrez votre goût haut de gamme avec ces verres. Ces lunettes sont fabriquées dans un matériaux noble et ont une finition brillante et une bonne sensation au toucher. C'est un ornement parfeit qaui vous donnera un look Mode et vintage.

Produit Description Afficher en pouces Afficher en mm
  • Longueur totale
  • Largeur des verres
  • Hauteur des verres
  • Taille du pont
  • Longueur des branches
  • Modèle: Femmes
  • Bord: Cerclée
  • Matière: Matériaux mixtes
  • Forme: Carré
  • Poids: 18.30g
  • Vision:: -20.00~+12.00
  • zone de EP:: 54~78
  • Progressif: Oui
  • Charnière à ressort: Non

Montrez votre goût haut de gamme avec ces verres. Ces lunettes sont fabriquées dans un matériaux noble et ont une finition brillante et une bonne sensation au toucher. C'est un ornement parfeit qaui vous donnera un look Mode et vintage.

Cadeaux gratuits
Customer Reviews

Here are what our customers say.

émettre un commentaire
Commentaire de clients
tu as atteint le fond
Le plus récent
Le plus aimé
Meilleures notes
Notes les plus basses
×
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.