20 lines
701 B
HTML
20 lines
701 B
HTML
<!--
|
|
* @Description :
|
|
* @Version : 1.0
|
|
* @Author : Shiming
|
|
* @Date : 2022-03-23 14:24:05
|
|
* @LastEditors : Shiming
|
|
* @LastEditTime : 2022-03-25 15:47:50
|
|
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\imagelist\\imagelist.component.html
|
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
|
-->
|
|
<div class="imgBox">
|
|
<ng-container *ngFor="let item of imgList; let i = index">
|
|
<ng-container *ngIf="item;">
|
|
<img nz-image [nzSrc]="item" />
|
|
</ng-container>
|
|
<ng-template #elseTemplate>
|
|
<div style="background-color: darkgrey;border-radius: 5px;width: 200px;height: 160px;" class="mr-sm"></div>
|
|
</ng-template>
|
|
</ng-container>
|
|
</div> |