固定资产项目前端文件
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.

25 lines
582 B

<app-page>
<div class="flex-1 overflow-hidden">
<app-server-paginated-table [options]="table" [renderColumn]="renderColumnTpl">
<ng-template #renderColumnTpl let-data let-key="key" let-row="row">
@switch (key) {
@case ('_assignee') {
<nz-tag> {{ data.userName }} </nz-tag>
}
2 years ago
@case ('procVars') {
{{ data.title }}
}
@case ('urgency') {
<nz-tag>
{{ data === 2 ? '紧急' : '普通' }}
</nz-tag>
}
@default {
{{ data }}
}
}
</ng-template>
</app-server-paginated-table>
</div>
</app-page>