56 lines
2.3 KiB
HTML
56 lines
2.3 KiB
HTML
|
<mat-card class="confirm-card">
|
||
|
<mat-card-header cdkDrag cdkDragRootElement=".cdk-overlay-pane" cdkDragHandle>
|
||
|
<mat-card-title>{{ data.title }}</mat-card-title>
|
||
|
</mat-card-header>
|
||
|
<mat-card-content fxLayout fxLayout.xs="column" fxLayoutAlign="center" fxLayoutGap="10px" fxLayoutGap.xs="0">
|
||
|
<div fxFlex class="container">
|
||
|
<mat-tab-group mat-stretch-tabs>
|
||
|
<mat-tab>
|
||
|
<ng-template mat-tab-label>
|
||
|
<mat-icon>group</mat-icon>
|
||
|
</ng-template>
|
||
|
<ng-template matTabContent>
|
||
|
<ucap-organization-tenant-search [companyList]="companyList$ | async" [companyCode]="companyCode"
|
||
|
(keyDownEnter)="onKeyDownEnterOrganizationTenantSearch($event)"></ucap-organization-tenant-search>
|
||
|
<ucap-group-expansion-panel #groupExpansionPanel [groupBuddyList]="groupBuddyList$ | async"
|
||
|
[favoritBuddyList]="favoritBuddyList$ | async" [checkable]="true">
|
||
|
<ucap-profile-user-list-item *ucapGroupExpansionPanelItem="let userInfo" [userInfo]="userInfo"
|
||
|
[sessionVerinfo]="sessionVerinfo" [checkable]="true">
|
||
|
</ucap-profile-user-list-item>
|
||
|
</ucap-group-expansion-panel>
|
||
|
</ng-template>
|
||
|
</mat-tab>
|
||
|
<mat-tab>
|
||
|
<ng-template mat-tab-label>
|
||
|
<mat-icon>device_hub</mat-icon>
|
||
|
</ng-template>
|
||
|
<ng-template matTabContent>
|
||
|
<app-layout-chat-left-sidenav-organization></app-layout-chat-left-sidenav-organization>
|
||
|
</ng-template>
|
||
|
</mat-tab>
|
||
|
<mat-tab>
|
||
|
<ng-template mat-tab-label>
|
||
|
<mat-icon>chat</mat-icon>
|
||
|
</ng-template>
|
||
|
<ng-template matTabContent>
|
||
|
<ucap-room-list-item *ngFor="let room of roomList" [loginRes]="loginRes" [roomInfo]="room"
|
||
|
[roomUserInfo]="getRoomUserList(room)" [sessionVerinfo]="sessionVerinfo">
|
||
|
</ucap-room-list-item>
|
||
|
</ng-template>
|
||
|
</mat-tab>
|
||
|
</mat-tab-group>
|
||
|
</div>
|
||
|
<div fxFlex="100px">
|
||
|
choiced users
|
||
|
</div>
|
||
|
</mat-card-content>
|
||
|
<mat-card-actions class="button-farm flex-row">
|
||
|
<button mat-stroked-button (click)="onClickChoice(false)" class="mat-primary">
|
||
|
No
|
||
|
</button>
|
||
|
<button mat-flat-button (click)="onClickChoice(true)" class="mat-primary">
|
||
|
Yes
|
||
|
</button>
|
||
|
</mat-card-actions>
|
||
|
</mat-card>
|