Rice Mutfak Önlük & Eldiven

  • Markalar
  • Rice Mutfak Önlük & Eldiven
  • Sırala
    Göster
    {{ productsData.info }}

    ÜCRETSİZ KARGO

    750 TL Üzeri Ücretsiz Kargo! Yurtiçi Kargo ile Gönderim!

    ÖDEME YÖNTEMLERİ

    Tüm Kredi Kartlarına 12'ye Varan Taksit, Havale/EFT ve Kapıda NAKİT Ödeme, Kapıda KREDİ KARTI ile ödeme

    İADE & DEĞİŞİM

    14 İş günü içinde iade ve değişim imkanı...

    GÜVENLİK ve GÜVENİLİRLİK

    PayTR ile güvenli ödeme ve orijinal ürün garantisi

    window.addEventListener('popstate', function(event) { location.reload(); }); var products = new Vue({ el: '#products', data: { loading: false, page: false, perPage: 45, sortBy: '', productsData: [], }, mounted() { this.getProducts(false); }, methods: { getProducts: function (history = true, resetpages = false) { this.loading = true; let params = new Object; if(this.page && !resetpages) { params.page = this.page; } if(this.perPage > 45) { params.perPage = this.perPage; } if(this.sortBy) { params.sortBy = this.sortBy; } let esc = encodeURIComponent; let query = Object.keys(params) .map(k => esc(k) + '=' + esc(params[k])) .join('&'); let url = "https://www.softpop.co/api/v1/tag/products/13" + (query ? '?' + query : ''); if(history) { window.history.pushState("", "", 'https://www.softpop.co/tag/rice-mutfak-onluk-eldiven' + (query ? '?' + query : '')); } fetch(url).then(response => response.json()) .then(response => { this.productsData = response; this.loading = false; }); } }, });