重新初始化项目

This commit is contained in:
2025-08-22 19:55:19 +08:00
commit 65bc67460b
805 changed files with 83402 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0"
xmlns="http://javafx.com/javafx/22" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.ecep.contract.manager.ds.contract.controller.ContractTabSkinVendorBid">
<children>
<HBox spacing="3.0">
<children>
<Button fx:id="bidVendorCreateBtn" mnemonicParsing="false" text="新增"/>
</children>
<padding>
<Insets bottom="10.0" left="7.0" right="10.0" top="10.0"/>
</padding>
</HBox>
<TableView fx:id="table" layoutX="48.0" layoutY="26.0" prefHeight="487.0" prefWidth="900.0"
AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="5.0" AnchorPane.rightAnchor="5.0"
AnchorPane.topAnchor="42.0">
<columns>
<TableColumn fx:id="bidVendorTable_idColumn" prefWidth="75.0" text="ID"/>
<TableColumn fx:id="bidVendorTable_companyColumn" prefWidth="200.0" text="供应商"/>
<TableColumn fx:id="bidVendorTable_quotationSheetColumn" prefWidth="200.0" text="报价表"/>
</columns>
<contextMenu>
<ContextMenu>
<items>
<MenuItem fx:id="bidVendorTable_menu_refresh" mnemonicParsing="false" text="刷新"/>
<MenuItem fx:id="bidVendorTable_menu_delete" mnemonicParsing="false" text="删除"/>
<MenuItem fx:id="bidVendorTable_menu_chose_sheet" mnemonicParsing="false" text="匹配报价表"/>
</items>
</ContextMenu>
</contextMenu>
</TableView>
</children>
</AnchorPane>