Deploy managed portal with Docker

This commit is contained in:
Yoilun
2026-05-07 17:58:26 +08:00
parent 74d1e72591
commit be5014c582
15 changed files with 350 additions and 39 deletions

3
web/.dockerignore Normal file
View File

@@ -0,0 +1,3 @@
node_modules
dist
.DS_Store

View File

@@ -37,8 +37,8 @@
show-overflow-tooltip
/>
<el-table-column
prop="direct_url"
label="打开地址"
prop="proxy_url"
label="代理地址"
min-width="220"
show-overflow-tooltip
/>
@@ -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;