From 5eebcb5e83b3f294582a4ee9ef2dbf38538a98ce Mon Sep 17 00:00:00 2001 From: liuguancen Date: Wed, 15 Apr 2026 20:20:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B7=A5=E5=85=B7=E5=8F=8D=E4=BB=A3?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E5=86=B2=E7=AA=81=E4=BF=AE=E5=A4=8D=20+=20OC?= =?UTF-8?q?R=E6=94=B9=E7=8B=AC=E7=AB=8B=E7=AB=AF=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Stirling PDF: 用 context-path=/pdf 从应用层解决路径问题 - OCR: Vue Router history模式不兼容子路径,改回独立端口18083 - Lama Cleaner: 精确location匹配所有API(/model /inpaint等) - PDF前端卡片路径从/spdf/改为/pdf/ Co-Authored-By: Claude Opus 4.6 (1M context) --- chat_web_front/src/views/applications/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chat_web_front/src/views/applications/index.vue b/chat_web_front/src/views/applications/index.vue index 028c182..159aa85 100644 --- a/chat_web_front/src/views/applications/index.vue +++ b/chat_web_front/src/views/applications/index.vue @@ -59,8 +59,8 @@ const toolCategories = reactive([ { name: '📄 文档处理', tools: [ - { id: 'stirling-pdf', name: 'Stirling PDF', icon: '', logoImg: stirlingLogo, description: 'PDF 合并、拆分、压缩、转换、加水印、OCR 识别等 30+ 功能', path: '/spdf/', enabled: true, type: 'newtab' }, - { id: 'trwebocr', name: '图片转文字 OCR', icon: '', logoImg: trwebocrLogo, description: '中文离线 OCR,识别图片中的文字和表格', path: '/ocr/', enabled: true, type: 'newtab' }, + { id: 'stirling-pdf', name: 'Stirling PDF', icon: '', logoImg: stirlingLogo, description: 'PDF 合并、拆分、压缩、转换、加水印、OCR 识别等 30+ 功能', path: '/pdf/', enabled: true, type: 'newtab' }, + { id: 'trwebocr', name: '图片转文字 OCR', icon: '', logoImg: trwebocrLogo, description: '中文离线 OCR,识别图片中的文字和表格', port: 18083, enabled: true, type: 'newtab' }, { id: 'libretranslate', name: '智能翻译', icon: '', logoImg: libretranslateLogo, description: '中英互译,支持文本和文件翻译,数据不出内网', path: '/translate/', enabled: true, type: 'newtab' }, ] },