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.
20 lines
1.3 KiB
20 lines
1.3 KiB
<div class="leftbox"> |
|
<span mat-dialog-title>选择要下载的文件:</span> |
|
<!-- <form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container"> --> |
|
|
|
<div class="fileDiv" *ngFor="let item of fileDatas;let key = index" style="height: 28px;line-height: 28px;position: relative;" (click)="addurl(item,key)"> |
|
<mat-icon style="color: #FFC122;">insert_drive_file</mat-icon> |
|
<span style="position: absolute;left: 30px; font-size: 14px;width: 215px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" title={{item.fileName}}>{{item.fileName ? item.fileName : name2 }}</span> |
|
<span style="position: absolute;left: 260px;font-size: 14px;">文件大小:{{ item.filePige }} M</span> |
|
<mat-icon *ngIf="key == selectedFileIndex" style="color: #FFC122;" style="position: absolute;left: 243px;font-size: 16px;top: 6px;">check_circle</mat-icon> |
|
</div> |
|
|
|
|
|
|
|
<div class="btn" style="margin-top: 30px;"> |
|
<button type="button" (click)="confirm()" class="savebtn" mat-raised-button color="primary" style="margin-right: 5px;">确定</button> |
|
<button type="button" mat-button (click)="onNoClick()" mat-raised-button>取消</button> |
|
</div> |
|
|
|
<!-- </form> --> |
|
</div> |