refactor(platform): 移除美团首次接入功能并优化界面布局

- 移除了美团首次接入选项及相关配置
- 调整了平台选项之间的间距设置
- 优化了美团相关功能模块的显示逻辑
- 统一了界面中cookie相关的命名规范
- 简化了平台选项的初始化流程
This commit is contained in:
2026-03-18 18:30:33 +08:00
parent c00d25f692
commit 0bf9f962b9

View File

@@ -73,28 +73,21 @@ public class PlatformSelectionView {
platformOptions.setAlignment(Pos.CENTER);
platformOptions.setSpacing(80); // 增加平台选项之间的间距
// 美团开店宝cookie选项
// 美团开店宝 cookie 选项
VBox meituanOption = createPlatformMtOption(
"美团Cookie更新",
"美团 Cookie 更新",
GlobalConfig.mtLogo,
"#FFD700","ftbCrawlNetMt"
);
// 美团首次接入
VBox meituanFirstOption = createPlatformMtOption(
"美团接入",
GlobalConfig.mtLogo,
"#FFD700","ftbCrawlNetFirstMt"
);
// 美团数据抓取选项
VBox meituanCrawlOption = createPlatformMtCrawlOption(
"美团数据抓取",
GlobalConfig.mtLogo,
"#FF6B35"
);
platformOptions.getChildren().addAll(meituanOption, meituanFirstOption, meituanCrawlOption);
platformOptions.getChildren().addAll(meituanOption, meituanCrawlOption);
platformOptionsContainer.getChildren().addAll(platformOptions);
// 主容器