当前位置:   article > 正文

Angular:ngStyle的使用,实现列表数据不同颜色展示_angularjs form 行颜色

angularjs form 行颜色

想要实现一个table中,根据数据不同而用不同颜色展示,比如:

审批表经过不同次数编辑保存后审批表列表页对应行的字体颜色变化。如第一次保存默认为黑色,第二次保存为绿色,第三次保存为红色......(暂设置5层,5层后颜色不再变化)

首先要声明,由于我的table是封装起来的一个公共组件,也就是说我不得不将表格内容通过@Input()从我的使用的页面传到公共组件中,首先我们只有审批表这个列表需要控制数据显示不同颜色,所以我们先传一个参数用于判断当前显示的列表是否是审批表:

  1. <!-- 审批表列表 -->
  2. <app-ufast-table class="main-table" [tableConfig]="tableConfig"
  3. [getListHandle]="getDataList"
  4. [approveFormColor]="true" [dataList]="dataList">
  5. </app-ufast-table>

我们调用了封装组件<app-ufast-table>,用approveFormColor这个参数来告诉封装的组件我们当前是在审批表页!

那么相应的,我们在封装组件页面上,要接收这个参数——

  1. @Input()
  2. set approveFormColor(value: boolean) { // 审批表页
  3. this.isApproveForm = value;
  4. }

这样我们首先知道了,当前我们要开始展示审批表了,接下来我们要在封装组件中,判断某一行是第几次被审批——这个字段我们用approveUpdateCount:

  1. // 查询列表
  2. this.approvalFormService.getApprovalFormList(filterData).subscribe((resData: ApprovalFormNs.UfastHttpResT<any>) => {
  3. this.dataList = resData.value.list; // 获取列表数据
  4. this.tableConfig.total = resData.value.total;
  5. this.dataList.forEach((item) => {
  6. if (item.approveUpdateCount === 0) { // 控制不同样式展示不同的颜色
  7. item.itemStyleColor = 'black';
  8. } else if (item.approveUpdateCount === 1) {
  9. item.itemStyleColor = 'green';
  10. } else if (item.approveUpdateCount === 2) {
  11. item.itemStyleColor = 'red';
  12. } else if (item.approveUpdateCount === 3) {
  13. item.itemStyleColor = 'purple';
  14. } else if (item.approveUpdateCount === 4) {
  15. item.itemStyleColor = 'yellow';
  16. } else if (item.approveUpdateCount >= 5) {
  17. item.itemStyleColor = 'darkblue';
  18. }
  19. });

注意:item.itemStyleColor = 'black';这里我们在从后台传入的每行数据中,都增加了一个控制当前数据颜色的参数,这个参数会随着上面的dataList一起传到封装的组件中,用于显示颜色——表格列的配置如下,每一列都用color接收了上面定义的颜色参数itemStyleColor:

  1. headers: [
  2. { title: '操作', tdTemplate: this.operationTpl, width: 220, fixed: true },
  3. { title: '审批表编号', tdTemplate: this.approvalNoTpl, width: 150 },
  4. { title: '状态', field: 'status', width: 120, pipe: 'purchaseApprovalStatus', color: 'itemStyleColor' },
  5. { title: '采购方式', field: 'purchaseMethod', width: 120, pipe: 'purchaseWay', color: 'itemStyleColor' },
  6. { title: '物料类型', field: 'materialType', width: 120, pipe: 'materialType2', color: 'itemStyleColor' },
  7. { title: '供应商', field: 'supplier', width: 300, color: 'itemStyleColor' },
  8. { title: '创建人', field: 'creatorName', width: 100, color: 'itemStyleColor' },
  9. { title: '创建时间', field: 'createDate', width: 150, pipe: 'date:yyyy-MM-dd HH:mm:ss', color: 'itemStyleColor' },
  10. ]

接下来我们在封装组件中,接收这个控制颜色的参数color,去改变每行数据的CSS:

  1. <tr *ngFor="let row of tableData.data;trackBy:trackByTableBody;let rowIndex=index;"
  2. [ngClass]="row[_tableConfig.trClassListField] || []">
  3. <ng-container *ngFor="let head of _tableConfig.headers;trackBy:trackByTableHead;let
  4. headIndex=index;">
  5. <!-- isApproveForm是从使用的页面传进来的参数,表示当前列表是审批表 -->
  6. <td *ngIf="head.show !== false &&!!isApproveForm" [ngClass]="head.tdClassList">
  7. <ng-container *ngIf="head.tdTemplate;else rowTpl">
  8. <ng-container
  9. *ngTemplateOutlet="head.tdTemplate;context:row|context:rowIndex"></ng-
  10. container>
  11. </ng-container>
  12. <ng-template #rowTpl>
  13. <ng-container *ngIf="head.pipe">
  14. <span [ngStyle]="{'color': row[head.color]}">
  15. {{row[head.field] | map:head.pipe}}
  16. </span>
  17. </ng-container>
  18. <ng-container *ngIf="!head.pipe">
  19. <span [ngStyle]="{'color': row[head.color]}">
  20. {{row[head.field]}}
  21. </span>
  22. </ng-container>
  23. </ng-template>
  24. </td>
  25. </ng-container>
  26. </tr>

_tableConfig.headers存放的是列表的标题array,row是我们在页面上遍历出的table行数据。

这里我们用<ng-container>来展示重复的数据,也就是我们的每一行表格,其中我们将color从我们上面封装的每一行表格中抽出来,去控制行数据的style。

仔细看上面的写法,我们使用了span来包裹要展示的文本数据,[ngStyle]="{'color': row[head.color]}"这个写法很重要~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/436132
推荐阅读
相关标签
  

闽ICP备14008679号