14 changed files with 262 additions and 45 deletions
@ -0,0 +1,27 @@
|
||||
<!-- |
||||
* @Descripttion: |
||||
* @version: |
||||
* @Author: sueRimn |
||||
* @Date: 2020-12-26 15:26:00 |
||||
* @LastEditors: sueRimn |
||||
* @LastEditTime: 2020-12-28 13:52:04 |
||||
--> |
||||
<div class="box"> |
||||
<div class="top"> |
||||
<span>修改预案名称</span> |
||||
</div> |
||||
<div class="queryField"> |
||||
<label style="margin-right: 10px;">原预案名称:</label> |
||||
<label style="margin-right: 10px;" >{{oldname}}</label> |
||||
</div> |
||||
<div class="queryField"> |
||||
<label style="margin-right: 10px;">新预案名称:</label> |
||||
<mat-form-field class="example-full-width"> |
||||
<input matInput placeholder="请输入新预案名称" required name="companyName" autocomplete="off" [(ngModel)]="unitname"> |
||||
</mat-form-field> |
||||
</div> |
||||
<div class="bottom"> |
||||
<button mat-raised-button color="primary" (click)="updateName()">确定</button> |
||||
<button mat-raised-button style="margin-left: 50px;" (click)="close()">取消</button> |
||||
</div> |
||||
</div> |
@ -0,0 +1,38 @@
|
||||
.box{ |
||||
height: 100%; |
||||
width: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.queryField { |
||||
margin: 6px 5px; |
||||
input { |
||||
//width: 50px; |
||||
height: 18px; |
||||
line-height: 18px; |
||||
border-radius: 3px;} |
||||
button{ |
||||
width: 140px; |
||||
font-size: 16px; |
||||
} |
||||
label{ |
||||
font-size: 16px; |
||||
} |
||||
} |
||||
.top{ |
||||
width: 100%; |
||||
margin-bottom: 20px; |
||||
span{ |
||||
color: #2196F3; |
||||
margin-left: 10px; |
||||
font-size: 18px; |
||||
} |
||||
} |
||||
.bottom{ |
||||
margin: 15px 35px; |
||||
button{ |
||||
width: 80px; |
||||
height: 36px; |
||||
font-size: 16px; |
||||
} |
||||
} |
Loading…
Reference in new issue