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.
14 lines
579 B
14 lines
579 B
5 years ago
|
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container">
|
||
|
<mat-form-field>
|
||
|
<input matInput id="name" name="name" type='text'
|
||
|
required
|
||
|
style="font-size: 12px;"
|
||
|
onfocus="this.select()"
|
||
|
[(ngModel)]="newFolderName" placeholder="创建文件夹">
|
||
|
</mat-form-field>
|
||
|
|
||
|
<div class="btn">
|
||
|
<button type="submit" class="savebtn" mat-raised-button color="primary" [disabled]='form.invalid'>确定</button>
|
||
|
<button type="button" mat-button (click)="onNoClick()" mat-raised-button>取消</button>
|
||
|
</div>
|
||
|
</form>
|