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.
10 lines
477 B
10 lines
477 B
5 months ago
|
<crud-template #$crud [defination]="defination" [api]="'users'" [row-operation-template]="$password" [error]="error">
|
||
|
<!--角色列-->
|
||
|
<ng-template #$role let-row>{{ row.role | field : 'name' | join }}</ng-template>
|
||
|
<!--重置密码-->
|
||
|
<ng-template #$password let-row>
|
||
|
<button mat-icon-button matTooltip="{{ 'routes.basic.user.password' | translate }}" (click)="password(row.id)">
|
||
|
<mat-icon>lock_open</mat-icon>
|
||
|
</button>
|
||
|
</ng-template>
|
||
|
</crud-template>
|