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.
25 lines
967 B
25 lines
967 B
4 years ago
|
<div mat-dialog-title>新增建筑</div>
|
||
|
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container">
|
||
|
|
||
|
<mat-form-field hintLabel="名字不多于20个字">
|
||
|
<input matInput id="name" name="name"
|
||
|
required
|
||
|
maxlength="20"
|
||
|
ngModel #name="ngModel" placeholder="建筑名称"
|
||
|
#input
|
||
|
>
|
||
|
<mat-hint align="end">{{input.value?.length || 0}}/20</mat-hint>
|
||
|
</mat-form-field>
|
||
|
|
||
|
<mat-form-field>
|
||
|
<mat-select required name="unittype" ngModel #unittype="ngModel" placeholder="建筑类型">
|
||
|
<mat-option [value]="item.id" *ngFor="let item of allunittype" >{{item.name}}</mat-option>
|
||
|
</mat-select>
|
||
|
</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>
|