sms 웹링크 default browser 로 오픈되도록 수정.

This commit is contained in:
leejinho 2020-03-24 10:56:50 +09:00
parent 9f2afbc7fd
commit 023571a874
2 changed files with 32 additions and 30 deletions

View File

@ -450,53 +450,55 @@ export class TopBarComponent implements OnInit, OnDestroy {
let height = 800; let height = 800;
let openType = 'INNER-POPUP'; let openType = 'INNER-POPUP';
switch (link.key) { switch (link.key) {
case WebLinkType.Sms: // /** SMS URL */
/** SMS URL */ // case WebLinkType.Sms:
{ // {
width = 685; // width = 685;
height = 640; // height = 640;
} // }
break; // break;
// /** IT서비스데스크 URL */
// case WebLinkType.Itsvcdesk: // case WebLinkType.Itsvcdesk:
// /** IT서비스데스크 URL */
// { // {
// width = 1400; // width = 1400;
// height = 1000; // height = 1000;
// } // }
// break; // break;
/** 화상회의 URL */
case WebLinkType.Conf: case WebLinkType.Conf:
/** 화상회의 URL */
{ {
} }
break; break;
case WebLinkType.Itsvcdesk: /** SMS URL */
case WebLinkType.Sms:
/** IT서비스데스크 URL */ /** IT서비스데스크 URL */
case WebLinkType.Dsp: case WebLinkType.Itsvcdesk:
/** DSP URL */ /** DSP URL */
case WebLinkType.Webhard: case WebLinkType.Dsp:
/** 웹하드 URL */ /** 웹하드 URL */
case WebLinkType.Ep: case WebLinkType.Webhard:
/** EP URL */ /** EP URL */
case WebLinkType.Sop: case WebLinkType.Ep:
/** S&OP회의 URL */ /** S&OP회의 URL */
case WebLinkType.Som: case WebLinkType.Sop:
/** S&OM회의 URL */ /** S&OM회의 URL */
case WebLinkType.Elephant: case WebLinkType.Som:
/** 코끼리 URL */ /** 코끼리 URL */
case WebLinkType.UrgntNews: case WebLinkType.Elephant:
/** 개인속보 URL */ /** 개인속보 URL */
case WebLinkType.MailCnt: case WebLinkType.UrgntNews:
/** 메일Count URL */ /** 메일Count URL */
case WebLinkType.Mail: case WebLinkType.MailCnt:
/** 메일 링크 URL */ /** 메일 링크 URL */
case WebLinkType.PaymentCnt: case WebLinkType.Mail:
/** 결재Count URL */ /** 결재Count URL */
case WebLinkType.Payment: case WebLinkType.PaymentCnt:
/** 결재링크 URL */ /** 결재링크 URL */
case WebLinkType.Erp: case WebLinkType.Payment:
/** Erp URL */ /** Erp URL */
case WebLinkType.Erp:
/** 비밀번호변경 URL ; PC 메신저만 해당 비밀번호 만료시 */
case WebLinkType.ChgPassword: case WebLinkType.ChgPassword:
/** 비밀번호변경 URL ; PC 메신저만 해당 비밀번호 만료시 */
{ {
openType = 'DEFAULT-BROWSER'; openType = 'DEFAULT-BROWSER';
} }

View File

@ -39,12 +39,12 @@ export class SmsUtils {
openSendSms(token: string, employeeNum?: string) { openSendSms(token: string, employeeNum?: string) {
const url = this.url.replace(/(\(%USER_TOKEN%\))/g, token); const url = this.url.replace(/(\(%USER_TOKEN%\))/g, token);
// this.nativeService.openDefaultBrowser(url); this.nativeService.openDefaultBrowser(url + `&ruser=${employeeNum},`);
WindowUtil.popupOpen( // WindowUtil.popupOpen(
url + `&ruser=${employeeNum},`, // url + `&ruser=${employeeNum},`,
'DaesangSMS', // 'DaesangSMS',
685, // 685,
640 // 640
); // );
} }
} }