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.
27 lines
1.2 KiB
27 lines
1.2 KiB
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container"> |
|
<span mat-dialog-title>修改分组</span> |
|
<mat-form-field> |
|
<input matInput id="name" name="groupname" type='text' |
|
required |
|
[(ngModel)]="groupname" placeholder="请输入分组名称"> |
|
</mat-form-field> |
|
<mat-form-field> |
|
<mat-select placeholder="分组类型" [(ngModel)]="grouptype" name="propertyType" required> |
|
<mat-option value="0">表单</mat-option> |
|
<mat-option value="1">表格</mat-option> |
|
</mat-select> |
|
</mat-form-field> |
|
<mat-form-field> |
|
<mat-select placeholder="数据行为" [(ngModel)]="groupaddMode" name="databehavior" required> |
|
<mat-option value="0">不新增</mat-option> |
|
<mat-option value="1">新增行</mat-option> |
|
<mat-option value="2">新增组</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> |