2019-10-21 04:36:58 +00:00
|
|
|
<div
|
|
|
|
fxLayout="row wrap"
|
|
|
|
fxFlex="100"
|
|
|
|
class="ucap-ui-file-upload-queue-container"
|
|
|
|
>
|
|
|
|
<div
|
2019-10-29 09:18:16 +00:00
|
|
|
fxLayout="column"
|
2019-10-21 04:36:58 +00:00
|
|
|
fxFlex="100"
|
2019-10-31 08:09:38 +00:00
|
|
|
fxFlex.gt-xs="100"
|
2019-10-21 04:36:58 +00:00
|
|
|
fxFlex.gt-md="25"
|
|
|
|
*ngFor="let file of uploadFiles"
|
|
|
|
>
|
2019-10-29 09:18:16 +00:00
|
|
|
<div fxLayout="row">
|
|
|
|
<div>
|
|
|
|
<mat-icon>image</mat-icon>
|
|
|
|
</div>
|
|
|
|
<div>{{ file.name }}</div>
|
|
|
|
<div (click)="onClickClear(file)">
|
|
|
|
<mat-icon>clear</mat-icon>
|
|
|
|
</div>
|
2019-10-21 04:36:58 +00:00
|
|
|
</div>
|
2019-10-29 09:18:16 +00:00
|
|
|
<div fxLayout="row">
|
|
|
|
<mat-progress-bar mode="determinate" value="40"> </mat-progress-bar>
|
2019-10-21 04:36:58 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-31 08:09:38 +00:00
|
|
|
|
|
|
|
<div *ngIf="uploadItems" fxLayout="column">
|
|
|
|
<div>여기에 파일을 Drop하시면 업로드 됩니다.</div>
|
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
fxLayout="row"
|
|
|
|
fxFlex="100"
|
|
|
|
fxFlex.gt-xs="20"
|
|
|
|
fxFlex.gt-md="25"
|
|
|
|
*ngFor="let item of uploadItems"
|
|
|
|
>
|
|
|
|
<mat-icon>image</mat-icon>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-21 04:36:58 +00:00
|
|
|
</div>
|