조직도 > 프로필 안뜨는 문제 수정.
This commit is contained in:
parent
40dcb1eace
commit
5fc95cd12a
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user