feat(ui): 更新应用标题为“中差评采集工具”

将登录页面和平台选择页面的窗口标题统一修改为“中差评采集工具”,以更准确地反映应用功能。

feat(core): 注释掉 Playwright Cookie 示例代码

暂时注释掉 DesktopApplication 中的 runPlaywrightCookieExample 方法及相关调用,便于后续调试或移除。

feat(module): 添加缺失的模块依赖并调整导出配置

在 module-info.java 中添加对 spring.core 和 java.desktop 的依赖,并优化 exports 配置,确保模块系统正确导入与导出。feat(build): 更新 JavaFX Maven 插件配置将主类更新为 DesktopApplication,并自定义 jlink 打包名称及运行时参数,增强打包灵活性与模块支持。
This commit is contained in:
wangchunxiang
2025-10-11 16:16:07 +08:00
parent 21fa2fe098
commit e16defe984
5 changed files with 14 additions and 8 deletions

View File

@@ -69,7 +69,7 @@ public class DesktopApplication extends Application {
primaryStage.show();
*/
}
/*
private void runPlaywrightCookieExample() {
appendText("开始运行Playwright Cookie拦截示例...\n");
Thread thread = new Thread(() ->
@@ -90,7 +90,7 @@ public class DesktopApplication extends Application {
private void appendText(String text) {
Platform.runLater(() -> textArea.appendText(text + "\n"));
}
}*/
@Override
public void stop() {