Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

service-register-config.component.html 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <div class="h-full flex flex-col p-2 min-w-0">
  2. <!-- 顶部标题区域 -->
  3. <app-sticky-header
  4. [title]="title"
  5. [hintText]="hintText"
  6. [buttonText]="'注册'"
  7. [buttonIcon]="'add'"
  8. [buttonColor]="'primary'"
  9. [disabled]="registering"
  10. [loading]="registering"
  11. [showDebugInfo]="true"
  12. [debugDataSource]="debugInfo.dataSource"
  13. [debugRecordCount]="debugInfo.recordCount"
  14. [debugLastUpdated]="debugInfo.lastUpdated"
  15. [debugUseMockData]="debugInfo.useMockData"
  16. [debugRegisterUrl]="debugInfo.registerUrl"
  17. [debugListUrl]="debugInfo.listUrl"
  18. [autoDetect]="true"
  19. [scrollContainer]="'.content-area'"
  20. [scrollThreshold]="20"
  21. [compactThreshold]="80"
  22. [widthTarget]="'#matCard'"
  23. (buttonClick)="onRegister()"
  24. ></app-sticky-header>
  25. <mat-card #matCard id="matCard" class="flex-1">
  26. <mat-card-content>
  27. <!-- AG Grid组件 -->
  28. <ag-grid-angular
  29. class="ag-theme-alpine h-[800px]"
  30. [columnDefs]="columnDefs"
  31. [rowModelType]="'infinite'"
  32. [datasource]="datasource"
  33. [pagination]="true"
  34. [paginationPageSize]="paginationPageSize"
  35. [cacheBlockSize]="paginationPageSize"
  36. [maxBlocksInCache]="10"
  37. [domLayout]="'normal'"
  38. [rowSelection]="'single'"
  39. (gridReady)="onGridReady($event)">
  40. </ag-grid-angular>
  41. </mat-card-content>
  42. </mat-card>
  43. </div>