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.
23 lines
868 B
23 lines
868 B
<div mat-dialog-title>创建建筑功能分区</div> |
|
<div> |
|
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container"> |
|
|
|
<mat-form-field> |
|
<mat-select [(value)]="selected" required ngModel name="buildingId" placeholder="建筑名称:"> |
|
<mat-option *ngFor="let item of buildings" [value]="item.id"> |
|
{{item.name}} |
|
</mat-option> |
|
</mat-select> |
|
</mat-form-field> |
|
<p style="font-size: 14px;" *ngIf="!buildings.length">暂无数据,请您创建基本信息建筑模块</p> |
|
|
|
<div mat-dialog-actions> |
|
<button mat-raised-button color="primary" type="submit" |
|
[disabled]="!form.form.valid"> |
|
确定 |
|
</button> |
|
<button mat-raised-button mat-dialog-close>取消</button> |
|
</div> |
|
|
|
</form> |
|
</div> |