0325 오후 싱크

This commit is contained in:
Park Byung Eun 2020-03-25 17:22:43 +09:00
parent 1a9fafd67e
commit fb80d0f0d1
5 changed files with 39 additions and 0 deletions

View File

@ -31,6 +31,14 @@ LF 탑바 로고
LF 메인 인트로 로고
assets/images/logo/bg_logo_intro.png
http://121.50.21.57:9097/uCapWebex/webex/join
?
userSeq=100&
deviceType=P&
tokenKey=OTkwMjY5MTA0MTc5ODc3ODM4MzgxMDE1NzU1NTQ2OTUzNjgwMjgw&
roomSeq=10
http://lftalk2.lfcorp.com:8033/Extern/CompanyList.aspx 요청시
this.queryProtocolService
.dataUser({

View File

@ -0,0 +1,31 @@
조직도 프로필 싱크 (진행)
this.queryProtocolService
.dataUser({
divCd: 'OPENPROF',
seq: userSeq,
senderCompanyCode: this.loginRes.userInfo.companyCode,
senderEmployeeType: this.loginRes.userInfo.employeeType
})
.pipe(
take(1),
map(res => {
if (!!res && !!res.userInfo) {
const result = this.dialogService.open<
ProfileDialogComponent,
ProfileDialogData,
ProfileDialogResult
>(ProfileDialogComponent, {
data: {
userInfo: res.userInfo
}
});
if (!!result) {
if (!!result.closeEvent && result.closeEvent === 'CHAT') {
this.onCancel();
}
}
}
})
)
.subscribe();