ucap-lg-web/src/app/sections/group/dialogs/edit-user.dialog.component.html
Park Byung Eun 92da6c71ce 0527 sync
2020-05-28 21:52:40 +09:00

37 lines
1.2 KiB
HTML

<div class="dialog-container">
<app-layouts-default-dialog
[disableClose]="false"
(closed)="onClosed($event)"
>
<div appLayoutsDefaultDialog="header">
{{ data.title }}
</div>
<div class="dialog-body" appLayoutsDefaultDialog="body">
<app-sections-select-group
[isMemberMove]="data.type"
[isDialog]="true"
[checkable]="true"
[curGroup]="data.group"
(changeUserList)="onChangeUserList($event)"
(changeGroupList)="onChangeGroupList($event)"
(changeGroupName)="onChangeGroupName($event)"
></app-sections-select-group>
<div>
<ucap-organization-profile-selection-01
[userInfoList]="selectedUserList"
[removableFor]="removableForSelection"
[colorFor]="colorForSelection"
(removed)="onRemovedProfileSelection($event)"
>
</ucap-organization-profile-selection-01>
</div>
</div>
<div appLayoutsDefaultDialog="action">
<button mat-button (click)="onClosed($event)">취소</button>
<button mat-button (click)="onConfirm()">
완료
</button>
</div>
</app-layouts-default-dialog>
</div>