Có nhận ship hàng và giao hàng LỊCH TRÌNH
Contact WaveMAX Laundry
Liên hệ với chúng tôi

Có câu hỏi?
Chúng tôi luôn sẵn lòng giúp đỡ

Dù bạn đang tìm địa điểm hay khám phá cơ hội nhượng quyền kinh doanh, đội ngũ của chúng tôi luôn sẵn sàng.

Mở cửa hàng ngày từ 7 giờ sáng đến 10 giờ tối
Hơn 75 địa điểm trên toàn quốc
Hệ thống nhượng quyền tiệm giặt là #1
Chúng Tôi Có Thể Giúp Gì?

Liên hệ Sóng MAX

Chọn thứ bạn đang tìm kiếm và chúng tôi sẽ kết nối bạn với nguồn lực phù hợp.

Chúng tôi sẽ tìm địa điểm WaveMAX gần bạn nhất, hoặc nhập thành phố/mã zip của bạn bên dưới.

hoặc
1
2
3
4
5
Tiền mặt có sẵn để đầu tư

Yêu cầu về thanh khoản tối thiểu của chúng tôi là $500k.

Tài sản ròng hiện tại

Yêu cầu về tài sản ròng tối thiểu của chúng tôi là $1M.

Mức độ quan tâm

Hãy cho chúng tôi biết bạn đang ở giai đoạn nào.

Bạn biết đến chúng tôi qua đâu?

Chúng tôi rất muốn biết bạn đã tìm thấy WaveMAX như thế nào!

' : ''; card.innerHTML = '
📍
' +'
' +'
' địa điểm của bạn'
' +'
'+loc.a+'
' +phoneHtml +'
'cách xa '+item.dist.toFixed(1)+' dặm
' +'
' +'
' +'Chỉ đường'+(loc.c ?'Liên hệ' : '') +(loc.u ? 'Địa điểm' : '') +'
'; results.appendChild(card); }); var all = document.createElement('div'); all.className = 'wmc-loc-all'; all.innerHTML = 'Xem tất cả '+WMC_LOC.length+' địa điểm WaveMAX →'; results.appendChild(all); } function wmcGeo() { var btn = document.getElementById('wmc-geo-btn'); var lbl = btn.querySelector('.wmc-geo-btn__lbl'); var status = document.getElementById('wmc-loc-status'); if (!navigator.geolocation) { status.textContent = 'Geolocation is not supported by your browser.'; status.style.display = 'block'; return; } btn.classList.add('loading'); btn.disabled = true; lbl.textContent = 'Detecting location...'; status.textContent = 'Finding nearest WaveMAX locations...'; status.style.display = 'block'; document.getElementById('wmc-loc-results').innerHTML = ''; navigator.geolocation.getCurrentPosition( function(pos) { btn.classList.remove('loading'); btn.disabled = false; lbl.textContent = 'Use My Current Location'; wmcShowLocs(pos.coords.latitude, pos.coords.longitude, 'your location'); }, function(err) { btn.classList.remove('loading'); btn.disabled = false; lbl.textContent = 'Use My Current Location'; status.textContent = err.code === 1 ? 'Location access was denied. Enter your city or zip below.' : 'Could not get your location. Enter your city or zip below.'; status.style.display = 'block'; }, {timeout:10000, maximumAge:300000} ); } function wmcZipSearch() { var query = document.getElementById('wmc-zip').value.trim(); var status = document.getElementById('wmc-loc-status'); if (!query) return; status.textContent = 'Searching for "'+query+'"...'; status.style.display = 'block'; document.getElementById('wmc-loc-results').innerHTML = ''; fetch('https://nominatim.openstreetmap.org/search?format=json&limit=1&countrycodes=us&q='+encodeURIComponent(query), {headers:{'Accept-Language':'en'}}) .then(function(r){ return r.json(); }) .then(function(data) { if (data && data.length > 0) { var lat = parseFloat(data[0].lat); var lng = parseFloat(data[0].lon); var name = data[0].display_name.split(',').slice(0,2).join(',').trim(); wmcShowLocs(lat, lng, name); } else { status.textContent = 'No results for "'+query+'". Try a different city or zip.'; status.style.display = 'block'; } }) .catch(function() { // Fallback: match in our own data var q = query.toLowerCase(); var match = WMC_LOC.find(function(l){ return l.a.toLowerCase().indexOf(q) > -1; }); if (match) { wmcShowLocs(match.lat, match.lng, query); } else { status.textContent = 'Search unavailable. Try the locations page.'; status.style.display = 'block'; document.getElementById('wmc-loc-results').innerHTML = '''; } }); } // ============================================================ // FORM: đồng bộ hóa dữ liệu trình hướng dẫn vào các trường ẩn trước khi gửi // ============================================================ var wfEl = document.getElementById('wmc-franchise-form'); if (wfEl) { wfEl.addEventListener('submit', function() { var notes = []; if (WMC.liq) { notes.push('Tiền mặt: '+WMC.liq); document.getElementById('wmc-liq').value = WMC.liq; } if (WMC.nw) { notes.push('Giá trị ròng: '+WMC.nw); document.getElementById('wmc-nw').value = WMC.nw; } if (WMC.int) { notes.push('Lãi suất: '+WMC.int); document.getElementById('wmc-int').value = WMC.int; } if (WMC.src) { notes.push('Nguồn: '+WMC.src); document.getElementById('wmc-src').value = WMC.src; } document.getElementById('wmc-desc').value = notes.join(' | '); }); }