feat(爬虫桌面): 添加登录界面和平台选择界面

新增了基于JavaFX的登录界面和平台选择界面,支持管理员账号登录及
平台切换功能。

- 在 `.gitignore` 中添加忽略 `.idea` 目录
- 引入 `LoginView` 页面作为应用启动入口- 实现基础的账号密码输入与登录按钮交互逻辑
- 创建平台选择页面 `PlatformSelectionView`,展示美团开店宝和抖音来客选项- 更新模块配置文件 `module-info.java` 导出新增的服务和页面包路径
This commit is contained in:
wangchunxiang
2025-10-11 16:00:52 +08:00
parent c1e6dc67b1
commit 21fa2fe098
5 changed files with 181 additions and 1 deletions

View File

@@ -0,0 +1,97 @@
package com.fantaibao.page;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class PlatformSelectionView {
private Stage primaryStage;
public PlatformSelectionView(Stage primaryStage) {
this.primaryStage = primaryStage;
initialize();
}
private void initialize() {
// 设置窗口标题
primaryStage.setTitle("请选择爬虫平台");
// 主容器
VBox root = new VBox();
root.setAlignment(Pos.CENTER);
root.setSpacing(20);
root.setPadding(new Insets(40));
// 标题
Label titleLabel = new Label("请选择爬虫平台");
titleLabel.setStyle("-fx-font-size: 18px; -fx-font-weight: bold;");
// 描述信息
Label infoLabel = new Label("连接您的电商平台,智能化采集商品数据");
infoLabel.setStyle("-fx-font-size: 14px;");
// 平台选项容器
HBox platformOptions = new HBox();
platformOptions.setAlignment(Pos.CENTER);
platformOptions.setSpacing(20);
// 美团开店宝选项
VBox meituanOption = createPlatformOption(
"美团开店宝",
"https://placehold.co/64x64?text=MT&bg=FFD700&fg=333",
"采集店铺数据、获取商品信息",
"#FFD700"
);
// 抖音来客选项
VBox douyinOption = createPlatformOption(
"抖音来客",
"https://placehold.co/64x64?text=DY&bg=4A90E2&fg=FFF",
"获取直播数据、用户评论、商品指标",
"#4A90E2"
);
platformOptions.getChildren().addAll(meituanOption, douyinOption);
// 添加组件到主容器
root.getChildren().addAll(titleLabel, infoLabel, platformOptions);
// 设置场景并显示窗口
Scene scene = new Scene(root, 800, 600);
primaryStage.setScene(scene);
primaryStage.show();
}
private VBox createPlatformOption(String title, String imageUrl, String description, String buttonColor) {
VBox option = new VBox();
option.setAlignment(Pos.CENTER);
option.setSpacing(10);
option.setPadding(new Insets(20));
option.setStyle("-fx-background-color: white; -fx-border-radius: 8px; -fx-padding: 20px;");
ImageView imageView = new ImageView(new Image(imageUrl));
imageView.setFitWidth(64);
imageView.setFitHeight(64);
Label titleLabel = new Label(title);
titleLabel.setStyle("-fx-font-size: 16px; -fx-font-weight: bold;");
Label descLabel = new Label(description);
descLabel.setStyle("-fx-font-size: 12px;");
Button connectButton = new Button("立即连接");
connectButton.setStyle("-fx-background-color: " + buttonColor + "; -fx-text-fill: white; -fx-padding: 10px 20px; -fx-border-radius: 4px;");
option.getChildren().addAll(imageView, titleLabel, descLabel, connectButton);
return option;
}
}