feat: expose transparent web device forwarders

This commit is contained in:
Yoilun
2026-05-15 11:25:18 +08:00
parent 2f458b1691
commit 7b32b21f07
4 changed files with 24 additions and 10 deletions

View File

@@ -37,8 +37,8 @@
show-overflow-tooltip
/>
<el-table-column
prop="proxy_url"
label="代理地址"
prop="direct_url"
label="透明转发地址"
min-width="220"
show-overflow-tooltip
/>
@@ -99,7 +99,7 @@ async function handleScan() {
}
function openDevice(row) {
const url = row?.proxy_url || row?.direct_url;
const url = row?.direct_url || row?.proxy_url;
if (!url) {
ElMessage.error("设备打开地址无效");
return;