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.
71 lines
2.6 KiB
71 lines
2.6 KiB
4 years ago
|
<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="propertyName" placeholder="属性名">
|
||
|
</mat-form-field>
|
||
|
</div>
|
||
|
|
||
|
<div mat-dialog-content>
|
||
|
<mat-form-field>
|
||
|
<mat-select placeholder="类型" ngModel name="propertyType" required>
|
||
|
<mat-option *ngFor="let item of propertyType" [value]="item.value">
|
||
|
{{item.viewValue}}
|
||
|
</mat-option>
|
||
|
</mat-select>
|
||
|
</mat-form-field>
|
||
|
<mat-form-field style="margin-left: 10px;">
|
||
|
<input type="text" matInput ngModel pattern="^[0-9]*$"
|
||
|
name="propertyValue" placeholder="默认值">
|
||
|
</mat-form-field>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
<label>是否必填:</label>
|
||
|
<mat-radio-group required ngModel name='required' style="margin-left: 5px;">
|
||
|
<mat-radio-button value="1">是</mat-radio-button>
|
||
|
<mat-radio-button value="0">否</mat-radio-button>
|
||
|
</mat-radio-group>
|
||
|
</div>
|
||
|
|
||
|
<div mat-dialog-content>
|
||
|
<mat-form-field>
|
||
|
<mat-select placeholder="验证规则" ngModel name="ruleName">
|
||
|
<mat-option value="None">不验证</mat-option>
|
||
|
<mat-option value="≥">≥</mat-option>
|
||
|
<mat-option value="≤">≤</mat-option>
|
||
|
<mat-option value="Range">区间</mat-option>
|
||
|
<mat-option value="Regex">正则匹配</mat-option>
|
||
|
</mat-select>
|
||
|
</mat-form-field>
|
||
|
<mat-form-field style="margin-left: 10px;">
|
||
|
<input type="text" matInput ngModel name="ruleValue">
|
||
|
</mat-form-field>
|
||
|
</div>
|
||
|
|
||
|
<div mat-dialog-content>
|
||
|
<mat-form-field>
|
||
|
<input type="text" matInput ngModel
|
||
|
name="physicalUnit" placeholder="单位">
|
||
|
</mat-form-field>
|
||
|
</div>
|
||
|
|
||
|
<div mat-dialog-content>
|
||
|
<mat-form-field>
|
||
|
<input type="text" matInput ngModel
|
||
|
name="tag" placeholder="注释说明">
|
||
|
</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>
|