feat: scan host LAN web devices via proxy

This commit is contained in:
Yoilun
2026-05-15 01:17:44 +08:00
parent f8a6d9803d
commit 1114ee00c1
7 changed files with 421 additions and 22 deletions

View File

@@ -99,7 +99,7 @@ async function handleScan() {
}
function openDevice(row) {
const url = row?.direct_url || row?.proxy_url;
const url = row?.proxy_url || row?.direct_url;
if (!url) {
ElMessage.error("设备打开地址无效");
return;