重新初始化项目

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,41 @@
package com.ecep.contract.manager.ui;
import com.ecep.contract.manager.ds.other.model.IdentityEntity;
import com.ecep.contract.manager.ds.other.vo.IdentityViewModel;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.layout.HBox;
import javafx.stage.WindowEvent;
public abstract class AbstManagerWindowController<T extends IdentityEntity, TV extends IdentityViewModel<T>, Skin extends ManagerSkin>
extends AbstEntityBasedController<T, TV, Skin> {
// searcher
public TextField searchKeyField;
public Button searchBtn;
@FXML
public HBox footer;
// paging
public Button previousPageBtn;
public Button nextPageBtn;
public TextField currentPageNumberField;
@Override
public void onShown(WindowEvent windowEvent) {
// fixed fx:include uninitialized issue
previousPageBtn = (Button) footer.lookup("#previousPageBtn");
nextPageBtn = (Button) footer.lookup("#nextPageBtn");
currentPageNumberField = (TextField) footer.lookup("#currentPageNumberField");
leftStatusLabel = (Label) footer.lookup("#leftStatusLabel");
//
super.onShown(windowEvent);
}
}