|
|
@@ -39,10 +39,10 @@
|
|
39
|
39
|
<div *ngIf="configMetaList.length > 0" class="overflow-auto">
|
|
40
|
40
|
<table mat-table [dataSource]="configMetaList" class="w-full">
|
|
41
|
41
|
<!-- ID列 -->
|
|
42
|
|
- <ng-container matColumnDef="id">
|
|
|
42
|
+ <!-- <ng-container matColumnDef="id">
|
|
43
|
43
|
<th mat-header-cell *matHeaderCellDef>ID</th>
|
|
44
|
44
|
<td mat-cell *matCellDef="let item">{{ item.id }}</td>
|
|
45
|
|
- </ng-container>
|
|
|
45
|
+ </ng-container> -->
|
|
46
|
46
|
|
|
47
|
47
|
<!-- 配置名称列 -->
|
|
48
|
48
|
<ng-container matColumnDef="configName">
|
|
|
@@ -75,16 +75,16 @@
|
|
75
|
75
|
</ng-container>
|
|
76
|
76
|
|
|
77
|
77
|
<!-- 创建人列 -->
|
|
78
|
|
- <ng-container matColumnDef="creator">
|
|
|
78
|
+ <!-- <ng-container matColumnDef="creator">
|
|
79
|
79
|
<th mat-header-cell *matHeaderCellDef>创建人</th>
|
|
80
|
80
|
<td mat-cell *matCellDef="let item">{{ item.creator }}</td>
|
|
81
|
|
- </ng-container>
|
|
|
81
|
+ </ng-container> -->
|
|
82
|
82
|
|
|
83
|
83
|
<!-- 创建时间列 -->
|
|
84
|
|
- <ng-container matColumnDef="createdAt">
|
|
|
84
|
+ <!-- <ng-container matColumnDef="createdAt">
|
|
85
|
85
|
<th mat-header-cell *matHeaderCellDef>创建时间</th>
|
|
86
|
86
|
<td mat-cell *matCellDef="let item">{{ item.createdAt | date:'yyyy-MM-dd HH:mm' }}</td>
|
|
87
|
|
- </ng-container>
|
|
|
87
|
+ </ng-container> -->
|
|
88
|
88
|
|
|
89
|
89
|
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
|
|
90
|
90
|
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
|