조직도 > 프로필 안뜨는 문제 수정.

This commit is contained in:
leejinho 2020-01-06 09:25:57 +09:00
parent 40dcb1eace
commit 5fc95cd12a

View File

@ -98,9 +98,7 @@ export class OrganizationComponent
userInfos: (UserInfo | UserInfoSS | UserInfoF | UserInfoDN)[];
}>();
@Output()
openProfile = new EventEmitter<{
userInfo: UserInfo | UserInfoSS | UserInfoF | UserInfoDN;
}>();
openProfile = new EventEmitter<{ userSeq: number }>();
@Output()
sendCall = new EventEmitter<string>();
@Output()
@ -416,8 +414,8 @@ export class OrganizationComponent
this.toggleUser.emit(userInfo);
}
onClickOpenProfile(userInfo: UserInfo | UserInfoSS | UserInfoF | UserInfoDN) {
this.openProfile.emit({ userInfo });
onClickOpenProfile(userSeq: number) {
this.openProfile.emit({ userSeq });
}
onClickSendClickToCall(calleeNumber: string) {
this.sendCall.emit(calleeNumber);