提供取货和送货服务 时间表
Contact WaveMAX Laundry
联系我们

有问题吗?
我们随时为您服务

无论您是在寻找选址还是探索加盟事宜,我们的团队随时准备为您服务。.

周一至周日 早上7点至晚上10点
全国75+个地点
#1 自助洗衣店特许经营
我们能帮您什么?

联系方式 WaveMAX

选择您正在寻找的内容,我们将为您推荐合适的资源。.

我们将找到离您最近的 WaveMAX 地点,或者在下方输入您的城市或邮政编码。.

1
2
3
4
5
可用于投资的现金

我们的最低流动性要求是 $500k。.

当前净资产

我们的最低净资产要求是 $1M。.

关注程度

请告诉我们您处于哪个阶段。.

您是如何知道我们的?

我们很想知道您是如何找到 WaveMAX 的!

': ''; card.innerHTML = '
📍
' +'
' +'
'+loc.n+'
' +'
'+loc.a+'
' +phoneHtml +'
'距离'+item.dist.toFixed(1)+'英里
' +'
' +'
' +'路线指引' +(loc.c ? '联系方式':' : '') +(loc.u ? '地点' : '') +'
'; results.appendChild(card); }); var all = document.createElement('div'); all.className = 'wmc-loc-all'; all.innerHTML = '查看所有 '+WMC_LOC.length+' 个 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 = '''; } }); } // ============================================================ // 表单:在提交前将向导数据同步到隐藏字段 // ============================================================ var wfEl = document.getElementById('wmc-franchise-form'); if (wfEl) { wfEl.addEventListener('submit', function() { var notes = []; if (WMC.liq) { notes.push('现金: '+WMC.liq); document.getElementById('wmc-liq').value = WMC.liq; } if (WMC.nw) { notes.push('净资产: '+WMC.nw); document.getElementById('wmc-nw').value = WMC.nw; } if (WMC.int) { notes.push('利息: '+WMC.int); document.getElementById('wmc-int').value = WMC.int; } if (WMC.src) { notes.push('来源: '+WMC.src); document.getElementById('wmc-src').value = WMC.src; } document.getElementById('wmc-desc').value = notes.join(' | '); }); }