pad端六熟悉
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.
 
 
 
 

33 lines
1.3 KiB

<form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container">
<mat-form-field>
<input matInput id="name" name="name" type='text'
required
ngModel #name="ngModel" placeholder="请输入组织名称">
</mat-form-field>
<mat-form-field>
<input matInput id="number" name="number" type='text'
ngModel #number="ngModel" placeholder="请输入机构代码">
</mat-form-field>
<mat-form-field>
<input matInput id="division" name="division" type='text'
ngModel #division="ngModel" placeholder="请输入区划">
</mat-form-field>
<!-- <mat-form-field class="example-full-width">
<input type="text" placeholder="是否拥有权限" aria-label="Number" matInput [matAutocomplete]="auto1" name="enabled" ngModel #enabled="ngModel">
<mat-autocomplete #auto1="matAutocomplete">
<mat-option *ngFor="let option of options2" [value]="option">
{{option}}
</mat-option>
</mat-autocomplete>
</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>