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.
43 lines
1.4 KiB
43 lines
1.4 KiB
<!-- |
|
* @Descripttion: |
|
* @version: |
|
* @Author: sueRimn |
|
* @Date: 2021-05-21 10:43:28 |
|
* @LastEditors: sueRimn |
|
* @LastEditTime: 2021-05-21 11:05:14 |
|
--> |
|
<!-- |
|
* @Descripttion: |
|
* @version: |
|
* @Author: sueRimn |
|
* @Date: 2021-05-20 16:11:57 |
|
* @LastEditors: sueRimn |
|
* @LastEditTime: 2021-05-20 17:05:21 |
|
--> |
|
<div class="box"> |
|
<div class="top"> |
|
<span style="font-size: 20px;">修改预案名称和级别</span> |
|
</div> |
|
<div class="queryField"> |
|
<label style="margin-right: 10px;">预案名称:</label> |
|
<mat-form-field class="example-full-width"> |
|
<input matInput placeholder="请输入预案名称" name="companyName" autocomplete="off" [(ngModel)]="unitname" required> |
|
</mat-form-field> |
|
</div> |
|
|
|
|
|
<div class="queryField"> |
|
<label style="margin-right: 10px;">预案级别:</label> |
|
<mat-form-field> |
|
<mat-select placeholder='请选择预案级别' name="unittype" [(ngModel)]="level" required> |
|
<mat-option value="Ⅲ级">Ⅲ级</mat-option> |
|
<mat-option value="Ⅳ级">Ⅳ级</mat-option> |
|
<mat-option value="Ⅴ级">Ⅴ级</mat-option> |
|
</mat-select> |
|
</mat-form-field> |
|
</div> |
|
<div class="bottom"> |
|
<button mat-raised-button color="primary" (click)='upplan()'>确定</button> |
|
<button mat-raised-button style="margin-left: 50px;" (click)="close()">取消</button> |
|
</div> |
|
</div> |