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

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