feat: ComfyUI 改走 10.60.74.221,测试页上传图超阈值自动降采样

将 worker 默认 ComfyUI 地址改为远端 10.60.74.221:8188;前端测试页在像素超过 1536000 时等比缩小到 786432 以内。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
xsl
2026-07-17 02:23:35 +08:00
co-authored by Cursor
parent c1bb9614c7
commit 659c037270
17 changed files with 104 additions and 23 deletions
+3 -1
View File
@@ -55,6 +55,7 @@
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: none; align-items: center; justify-content: center; z-index: 50; cursor: zoom-out; }
.lightbox img { max-width: 95%; max-height: 95%; }
</style>
<script src="/static/img_downscale.js"></script>
</head>
<body>
<div class="container">
@@ -292,8 +293,9 @@ function renderResult(d) {
}
async function submitTest() {
const file = $('imageFile').files[0];
let file = $('imageFile').files[0];
if (!file) { setStatus('请先选择一张图片', 'error'); return; }
file = await window.downscaleImageFile(file);
const t0 = performance.now();
const btn = $('submitBtn');
btn.disabled = true; btn.textContent = '⏳ 请求中...';