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.
22 lines
702 B
22 lines
702 B
<!-- |
|
* @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> |