chenjingyu
4 years ago
10 changed files with 550 additions and 16 deletions
@ -0,0 +1,22 @@ |
|||||||
|
<!-- |
||||||
|
* @Descripttion: |
||||||
|
* @version: |
||||||
|
* @Author: sueRimn |
||||||
|
* @Date: 2021-05-26 14:54:36 |
||||||
|
* @LastEditors: sueRimn |
||||||
|
* @LastEditTime: 2021-05-26 15:05:10 |
||||||
|
--> |
||||||
|
<div class="box"> |
||||||
|
<div class="top"> |
||||||
|
<span>新增分组</span> |
||||||
|
</div> |
||||||
|
<div class="center"> |
||||||
|
<div class="group" *ngFor="let item of addAttinf"> |
||||||
|
<mat-checkbox class="example-margin" color='primary' [(ngModel)]="item.completed" >{{item.addAttinfName}}</mat-checkbox> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="bottom"> |
||||||
|
<button mat-raised-button color="primary" (click)='defineClick()'>确定</button> |
||||||
|
<button mat-raised-button style="margin-left: 20px;" (click)="close()">取消</button> |
||||||
|
</div> |
||||||
|
</div> |
@ -0,0 +1,22 @@ |
|||||||
|
<!-- |
||||||
|
* @Descripttion: |
||||||
|
* @version: |
||||||
|
* @Author: sueRimn |
||||||
|
* @Date: 2021-05-24 10:08:22 |
||||||
|
* @LastEditors: sueRimn |
||||||
|
* @LastEditTime: 2021-05-25 14:11:23 |
||||||
|
--> |
||||||
|
<div class="box"> |
||||||
|
<div class="top"> |
||||||
|
<span>新增分组</span> |
||||||
|
</div> |
||||||
|
<div class="center"> |
||||||
|
<div class="group" *ngFor="let item of addgtoup"> |
||||||
|
<mat-checkbox class="example-margin" color='primary' [(ngModel)]="item.completed" >{{item.groupName}}</mat-checkbox> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="bottom"> |
||||||
|
<button mat-raised-button color="primary" (click)='newGroup()'>确定</button> |
||||||
|
<button mat-raised-button style="margin-left: 20px;" (click)="close()">取消</button> |
||||||
|
</div> |
||||||
|
</div> |
@ -0,0 +1,40 @@ |
|||||||
|
.box{ |
||||||
|
height: 100%; |
||||||
|
width: 100%; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
.top{ |
||||||
|
width: 100%; |
||||||
|
height: 40px; |
||||||
|
text-align: center; |
||||||
|
span{ |
||||||
|
font-size: 18px; |
||||||
|
} |
||||||
|
} |
||||||
|
.center{ |
||||||
|
width: 100%; |
||||||
|
height: 75%; |
||||||
|
.group{ |
||||||
|
height: 35px; |
||||||
|
//margin-left: 20px; |
||||||
|
.example-margin { |
||||||
|
margin: 0 10px; |
||||||
|
} |
||||||
|
input{ |
||||||
|
top: 2px; |
||||||
|
} |
||||||
|
span{ |
||||||
|
margin-left: 8px; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
.bottom{ |
||||||
|
width: 100%; |
||||||
|
margin-top: 40px; |
||||||
|
button{ |
||||||
|
width: 80px; |
||||||
|
height: 36px; |
||||||
|
font-size: 16px; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
<!-- |
||||||
|
* @Descripttion: |
||||||
|
* @version: |
||||||
|
* @Author: sueRimn |
||||||
|
* @Date: 2021-05-25 15:43:12 |
||||||
|
* @LastEditors: sueRimn |
||||||
|
* @LastEditTime: 2021-05-26 09:59:04 |
||||||
|
--> |
||||||
|
<div class="box"> |
||||||
|
<div class="top"> |
||||||
|
<span>新增分组</span> |
||||||
|
</div> |
||||||
|
<div class="center"> |
||||||
|
<div class="group" *ngFor="let item of addwsurvey"> |
||||||
|
<mat-checkbox class="example-margin" color='primary' [(ngModel)]="item.completed" >{{item.surveyName}}</mat-checkbox> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="bottom"> |
||||||
|
<button mat-raised-button color="primary" (click)='defineClick()'>确定</button> |
||||||
|
<button mat-raised-button style="margin-left: 20px;" (click)="close()">取消</button> |
||||||
|
</div> |
||||||
|
</div> |
After Width: | Height: | Size: 379 B |
Loading…
Reference in new issue