회사코드 고정에 따른 enviroment 값 추가.

This commit is contained in:
leejinho 2019-12-16 08:53:06 +09:00
parent 0f3f64f32f
commit 9079361aa5
6 changed files with 10 additions and 5 deletions

View File

@ -134,7 +134,7 @@ export class LoginPageComponent implements OnInit, OnDestroy {
customInitilize() { customInitilize() {
// Daesang.. // Daesang..
this.fixedCompany = 'GUC100'; this.fixedCompany = environment.companyConfig.fixedCompanyCode;
this.fixedNotiBtnText = '이용 주의사항'; this.fixedNotiBtnText = '이용 주의사항';
} }

View File

@ -15,7 +15,8 @@ export const environment: Environment = {
title: `[개발] DS Talk`, title: `[개발] DS Talk`,
companyConfig: { companyConfig: {
companyGroupCode: 'LG' companyGroupCode: 'LG',
fixedCompanyCode: 'GUC100'
}, },
productConfig: { productConfig: {

View File

@ -15,7 +15,8 @@ export const environment: Environment = {
title: `DS Talk`, title: `DS Talk`,
companyConfig: { companyConfig: {
companyGroupCode: 'LG' companyGroupCode: 'LG',
fixedCompanyCode: 'GUC100'
}, },
productConfig: { productConfig: {

View File

@ -15,7 +15,8 @@ export const environment: Environment = {
title: `[개발] UCapMessenger`, title: `[개발] UCapMessenger`,
companyConfig: { companyConfig: {
companyGroupCode: 'LG' companyGroupCode: 'LG',
fixedCompanyCode: ''
}, },
productConfig: { productConfig: {

View File

@ -15,7 +15,8 @@ export const environment: Environment = {
title: `[개발] UCapMessenger`, title: `[개발] UCapMessenger`,
companyConfig: { companyConfig: {
companyGroupCode: 'LG' companyGroupCode: 'LG',
fixedCompanyCode: ''
}, },
productConfig: { productConfig: {

View File

@ -38,6 +38,7 @@ export interface Environment {
companyConfig: { companyConfig: {
companyGroupCode: string; companyGroupCode: string;
fixedCompanyCode: string;
}; };
productConfig: { productConfig: {