Mưu Sinh 02

1

Họa Sĩ: Lê Hương
Chất Liệu: Sơn dầu trên toan
Kích Thước: 80cm x 60cm

Sold

Đã Bán

function randomizeSales() { const agents = [ { name: "Vũ Trung", zalo: "https://zalo.me/84909896286", phone: "tel:+84909896286", zaloImg: "https://www.kiettacnghethuat.com/wp-content/uploads/Vu-Trung-Zalo.png", phoneImg: "https://www.kiettacnghethuat.com/wp-content/uploads/Vu-Trung-Hotline.png", weight: 75 // 75% xuất hiện }, { name: "Vũ Phương", zalo: "https://zalo.me/84987828876", phone: "tel:+84987828876", zaloImg: "https://www.kiettacnghethuat.com/wp-content/uploads/Phuong-Vu-Sales.png", phoneImg: "https://www.kiettacnghethuat.com/wp-content/uploads/Phuong-Vu-Sales.png", weight: 25 // 25% xuất hiện } ]; // Tính tổng trọng số const totalWeight = agents.reduce((sum, agent) => sum + agent.weight, 0); // Tạo số ngẫu nhiên từ 0 -> tổng trọng số const rand = Math.random() * totalWeight; let cumulative = 0; let selected = agents[0]; for (let i = 0; i < agents.length; i++) { cumulative += agents[i].weight; if (rand <= cumulative) { selected = agents[i]; break; } } // Zalo const zaloContainer = document.querySelector("#zalo"); zaloContainer.innerHTML = `
Liên hệ Zalo
${selected.name}
`; // Hotline const hotlineContainer = document.querySelector("#hotline"); hotlineContainer.innerHTML = `
Liên hệ Hotline
${selected.name}
`; }