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.
37 lines
1.3 KiB
37 lines
1.3 KiB
<div mat-dialog-title>新增可选分组</div> |
|
<div> |
|
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm"> |
|
|
|
<div mat-dialog-content> |
|
<mat-form-field> |
|
<input type="text" matInput ngModel |
|
required name="name" placeholder="可选分组名"> |
|
</mat-form-field> |
|
</div> |
|
<div> |
|
<mat-form-field> |
|
<mat-select placeholder="分组类型" ngModel name="type" required> |
|
<mat-option value="0">表单</mat-option> |
|
<mat-option value="1">表格</mat-option> |
|
</mat-select> |
|
</mat-form-field> |
|
</div> |
|
<div> |
|
<mat-form-field> |
|
<mat-select placeholder="数据行为" ngModel name="addMode" 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> |
|
|
|
<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> |