51 lines
2.7 KiB
XML
51 lines
2.7 KiB
XML
<?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:fx="http://javafx.com/fxml/1"
|
||
fx:controller="com.ecep.contract.manager.ds.customer.controller.CustomerTabSkinSatisfactionSurvey">
|
||
<children>
|
||
<VBox AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="5.0" AnchorPane.rightAnchor="5.0"
|
||
AnchorPane.topAnchor="5.0">
|
||
<children>
|
||
<HBox spacing="3.0">
|
||
<children>
|
||
<Button mnemonicParsing="false" text="重置"/>
|
||
</children>
|
||
<padding>
|
||
<Insets bottom="10.0" left="7.0" right="10.0" top="10.0"/>
|
||
</padding>
|
||
</HBox>
|
||
<TableView fx:id="table" minHeight="200.0" prefHeight="400.0" VBox.vgrow="ALWAYS">
|
||
<columns>
|
||
<TableColumn fx:id="idColumn" prefWidth="75.0" text="ID"/>
|
||
<TableColumn fx:id="projectColumn" prefWidth="230.0" text="项目"/>
|
||
<TableColumn fx:id="codeColumn" prefWidth="100.0" text="编号"
|
||
style="-fx-alignment: center-right;"/>
|
||
<TableColumn fx:id="dateColumn" prefWidth="85.0" text="日期"/>
|
||
<TableColumn fx:id="totalScoreColumn" prefWidth="70.0" text="总分"/>
|
||
<TableColumn fx:id="applicantColumn" prefWidth="75.0" text="申请人"/>
|
||
<TableColumn fx:id="applyTimeColumn" prefWidth="130.0" text="申请时间"/>
|
||
<TableColumn fx:id="descriptionColumn" prefWidth="180" text="备注"/>
|
||
</columns>
|
||
<contextMenu>
|
||
<ContextMenu>
|
||
<items>
|
||
<MenuItem fx:id="entityTable_menu_refresh" mnemonicParsing="false" text="刷新"/>
|
||
<MenuItem fx:id="entityTable_menu_del" mnemonicParsing="false" text="删除"/>
|
||
</items>
|
||
</ContextMenu>
|
||
</contextMenu>
|
||
</TableView>
|
||
<Pane prefHeight="50.0">
|
||
<children>
|
||
<Label layoutX="14.0" layoutY="7.0" text="相关项是U8系统中的客户,更新日期表示数据从U8系统中获取数据有变化时记录的日期,同步时间表示发生从U8系统中获取时的时间戳。"/>
|
||
</children>
|
||
</Pane>
|
||
</children>
|
||
</VBox>
|
||
</children>
|
||
</AnchorPane>
|