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
710 B
22 lines
710 B
4 years ago
|
<!--
|
||
|
* @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>
|