Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

service-register-config.component.html 945B

12345678910111213141516171819202122232425262728293031
  1. <!-- 页面容器 - 采用与工作示例相同的布局结构 -->
  2. <div class="page-container">
  3. <!-- Sticky Header组件 -->
  4. <app-sticky-header
  5. [title]="title"
  6. [hintText]="hintText"
  7. [buttons]="headerButtons"
  8. [collapseThreshold]="50"
  9. [scrollContainer]="'#service-register-content'"
  10. (buttonAction)="onHeaderButtonAction($event)"
  11. ></app-sticky-header>
  12. <!-- 内容区域 - 内部滚动 -->
  13. <div id="service-register-content" class="content-area">
  14. <!-- Tabulator 表格组件 -->
  15. <app-tabulator-grid id="tabulator-table"
  16. [columns]="columns"
  17. [dataLoader]="dataLoader"
  18. [height]="'1000px'"
  19. [paginationSize]="100"
  20. [paginationSizeSelector]="[10, 20, 50, 100,200,500]"
  21. [showPagination]="true"
  22. [remoteSort]="true"
  23. [remoteFilter]="true"
  24. (dataLoaded)="onDataLoaded($event)"
  25. (ajaxError)="onAjaxError($event)"
  26. ></app-tabulator-grid>
  27. </div>
  28. </div>