전화기능 연결 오류 수정
This commit is contained in:
parent
d9e4c6bff6
commit
10188dea22
|
@ -11,6 +11,7 @@
|
|||
"
|
||||
(openProfile)="onClickOpenProfile($event)"
|
||||
(closeRightDrawer)="onCloseRightDrawer()"
|
||||
(sendCall)="onClickSendClickToCall($event)"
|
||||
></app-layout-messenger-messages>
|
||||
|
||||
<app-layout-messenger-organization
|
||||
|
|
|
@ -21,6 +21,8 @@ export class MainContentsComponent implements OnInit {
|
|||
userSeq: number;
|
||||
}>();
|
||||
@Output()
|
||||
sendCall = new EventEmitter<string>();
|
||||
@Output()
|
||||
gotoDeptTree = new EventEmitter<number>();
|
||||
|
||||
@Output()
|
||||
|
@ -48,6 +50,9 @@ export class MainContentsComponent implements OnInit {
|
|||
onClickOpenProfile(userSeq: number) {
|
||||
this.openProfile.emit({ userSeq });
|
||||
}
|
||||
onClickSendClickToCall(calleeNumber: string) {
|
||||
this.sendCall.emit(calleeNumber);
|
||||
}
|
||||
|
||||
onClickGotoDeptTree(deptSeq: number) {
|
||||
this.gotoDeptTree.emit(deptSeq);
|
||||
|
|
Loading…
Reference in New Issue
Block a user