新增了基于JavaFX的登录界面和平台选择界面,支持管理员账号登录及 平台切换功能。 - 在 `.gitignore` 中添加忽略 `.idea` 目录 - 引入 `LoginView` 页面作为应用启动入口- 实现基础的账号密码输入与登录按钮交互逻辑 - 创建平台选择页面 `PlatformSelectionView`,展示美团开店宝和抖音来客选项- 更新模块配置文件 `module-info.java` 导出新增的服务和页面包路径
46 lines
704 B
Plaintext
46 lines
704 B
Plaintext
# ---> Java
|
|
# Compiled class file
|
|
*.class
|
|
.idea
|
|
# Log file
|
|
*.log
|
|
|
|
# BlueJ files
|
|
*.ctxt
|
|
|
|
# Mobile Tools for Java (J2ME)
|
|
.mtj.tmp/
|
|
|
|
# Package Files #
|
|
*.jar
|
|
*.war
|
|
*.nar
|
|
*.ear
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|
|
|
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
|
hs_err_pid*
|
|
replay_pid*
|
|
|
|
# ---> Maven
|
|
target/
|
|
pom.xml.tag
|
|
pom.xml.releaseBackup
|
|
pom.xml.versionsBackup
|
|
pom.xml.next
|
|
release.properties
|
|
dependency-reduced-pom.xml
|
|
buildNumber.properties
|
|
.mvn/timing.properties
|
|
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
|
|
.mvn/wrapper/maven-wrapper.jar
|
|
|
|
# Eclipse m2e generated files
|
|
# Eclipse Core
|
|
.project
|
|
# JDT-specific (Eclipse Java Development Tools)
|
|
.classpath
|
|
|