“
🔧 Chọn Gói Dịch Vụ
Giá máy đã bao gồm trong mỗi gói
- ✅ Giao hàng tận nơi nội thành TP.HCM
- ✅ Miễn phí giao hàng bán kính 7km
- ✅ Tặng công lắp đặt miễn phí
- ✅ Tặng ống cấp nước xả
- ✅ Bảo hành 3 tháng
- ✅ Kiểm tra máy trước khi nhận
Phổ biến nhất
- ✅ Tất cả trong gói giao hàng
- ✅ 1 đổi 1 trong 30 ngày
- ✅ Đi ống cấp thoát nước âm tường
- ✅ Bảo hành máy 5 tháng
- ✅ Tặng phiếu giảm giá 300k cho lần mua sau
💡 Tham khảo gói phù hợp 👉 Gọi hoặc Zalo để được báo giá chi tiết và xác nhận đặt hàng
/* TC PKG máy giặt v5.1 */
(function(){
var EXTRAS = [0, 200000, 450000];
var IDS = ['price0','price1','price2'];
var PKG = ['tcPkg0','tcPkg1','tcPkg2'];
function fmt(n){ return n.toLocaleString('vi-VN') + 'đ'; }
function getBase(){
var tries = [
'.summary .woocommerce-Price-amount bdi',
'.summary .price ins .woocommerce-Price-amount bdi',
'.summary .price .woocommerce-Price-amount bdi',
'.entry-summary .price .amount bdi',
'.price .amount bdi'
];
var found = null;
tries.forEach(function(sel){
if(found) return;
var el = document.querySelector(sel);
if(el){
var n = parseInt(el.textContent.replace(/[^d]/g,''),10);
if(n > 0) found = n;
}
});
return found;
}
function renderPrices(){
var base = getBase();
if(!base){ setTimeout(renderPrices, 600); return; }
IDS.forEach(function(id, idx){
var el = document.getElementById(id);
if(el) el.textContent = fmt(base + EXTRAS[idx]);
});
}
function selectPkg(chosenId){
PKG.forEach(function(id){
var el = document.getElementById(id);
if(!el) return;
el.classList[id === chosenId ? 'add' : 'remove']('tc-pkg-selected');
});
}
function bindEvents(){
PKG.forEach(function(id){
var el = document.getElementById(id);
if(!el) return;
function handler(){ selectPkg(id); }
el.addEventListener('mousedown', handler, false);
el.addEventListener('touchstart', handler, {passive:true});
});
}
function init(){ renderPrices(); bindEvents(); }
if(document.readyState === 'loading'){
document.addEventListener('DOMContentLoaded', init);
} else {
init();
}
setTimeout(bindEvents, 1000);
})();
“
Đánh giá
Chưa có đánh giá nào.