Files
contract-manager/client/src/main/resources/ui/company/customer/customer_manager.fxml
songqq ada539bebf refactor(controller): 重构控制器类名和路径,优化代码结构
feat(service): 新增QueryService接口实现,支持通用查询功能

docs(util): 完善ProxyUtils工具类的注释说明

fix(model): 修复CustomerCatalog实现IdentityEntity接口

style: 优化代码格式和导入顺序

perf(util): 提升FileUtils工具类功能,新增文件处理方法

chore: 更新README.md文件,补充UI资源路径说明

build: 更新pom.xml文件中的mainClass配置

test: 调整测试类命名和路径

ci: 更新CI配置文件中的类引用

refactor(controller): 重构表格单元格异步更新逻辑

docs(constant): 新增常量定义和注释

style: 统一代码风格和命名规范

refactor(service): 重构服务类继承关系

perf(controller): 优化表格数据加载性能

fix(service): 修复文件类型服务缓存问题

docs(model): 完善视图模型类注释

refactor(util): 重构文件工具类方法

style: 清理无用导入和代码

chore: 更新.gitignore文件

build: 调整项目依赖配置

refactor(controller): 重构控制器基类

perf(service): 优化查询服务性能

fix(controller): 修复表格数据加载异常

docs: 更新代码注释和文档

style: 统一代码缩进和格式
2025-09-13 01:02:43 +08:00

63 lines
3.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<VBox prefHeight="680.0" prefWidth="1120.0" xmlns="http://javafx.com/javafx/22" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.ecep.contract.controller.customer.CompanyCustomerManagerWindowController">
<children>
<MenuBar VBox.vgrow="NEVER">
<menus>
<Menu mnemonicParsing="false" text="客户">
<items>
<MenuItem mnemonicParsing="false" text="新建…" onAction="#onCreateNewCustomerAction"/>
</items>
</Menu>
<Menu mnemonicParsing="false" text="文件">
<items>
<MenuItem mnemonicParsing="false" text="重置…" onAction="#onReBuildFilesAction"/>
<MenuItem mnemonicParsing="false" text="导出台账…" onAction="#onExportAction"/>
<SeparatorMenuItem mnemonicParsing="false"/>
<MenuItem mnemonicParsing="false" text="Preferences…"/>
</items>
</Menu>
<Menu mnemonicParsing="false" text="帮助">
<items>
<MenuItem mnemonicParsing="false" text="About MyHelloApp"/>
</items>
</Menu>
</menus>
</MenuBar>
<ToolBar prefHeight="40.0" prefWidth="200.0">
<items>
<TextField fx:id="searchKeyField" promptText="检索关键字"/>
<Button fx:id="searchBtn" mnemonicParsing="false" text="检索"/>
</items>
</ToolBar>
<AnchorPane prefHeight="248.0" prefWidth="2239.0" VBox.vgrow="ALWAYS">
<children>
<TableView fx:id="table" layoutX="52.0" layoutY="14.0" prefHeight="200.0" prefWidth="200.0"
AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0"
AnchorPane.topAnchor="0.0">
<columns>
<TableColumn fx:id="idColumn" maxWidth="100.0" prefWidth="60.0" text="ID"
sortType="DESCENDING"/>
<TableColumn fx:id="companyColumn" prefWidth="200.0" minWidth="50.0" text="公司名称"/>
<TableColumn fx:id="catalogColumn" prefWidth="75.0" minWidth="50.0" text="分组"/>
<TableColumn fx:id="developDateColumn" prefWidth="120.0" minWidth="50.0" text="开发日期"/>
<TableColumn fx:id="pathColumn" prefWidth="250.0" minWidth="50.0" text="文件目录"/>
<TableColumn fx:id="createdColumn" prefWidth="160.0" minWidth="50.0" text="创建日期"/>
</columns>
<contextMenu>
<ContextMenu>
<items>
<MenuItem mnemonicParsing="false" onAction="#onBaseTableRefreshAction" text="刷新"/>
</items>
</ContextMenu>
</contextMenu>
</TableView>
</children>
</AnchorPane>
<fx:include source="../../part-footer.fxml" fx:id="footer"/>
</children>
</VBox>