회사코드 고정에 따른 enviroment 값 추가.
This commit is contained in:
parent
0f3f64f32f
commit
9079361aa5
|
@ -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 = '이용 주의사항';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,8 @@ export const environment: Environment = {
|
||||||
title: `[개발] DS Talk`,
|
title: `[개발] DS Talk`,
|
||||||
|
|
||||||
companyConfig: {
|
companyConfig: {
|
||||||
companyGroupCode: 'LG'
|
companyGroupCode: 'LG',
|
||||||
|
fixedCompanyCode: 'GUC100'
|
||||||
},
|
},
|
||||||
|
|
||||||
productConfig: {
|
productConfig: {
|
||||||
|
|
|
@ -15,7 +15,8 @@ export const environment: Environment = {
|
||||||
title: `DS Talk`,
|
title: `DS Talk`,
|
||||||
|
|
||||||
companyConfig: {
|
companyConfig: {
|
||||||
companyGroupCode: 'LG'
|
companyGroupCode: 'LG',
|
||||||
|
fixedCompanyCode: 'GUC100'
|
||||||
},
|
},
|
||||||
|
|
||||||
productConfig: {
|
productConfig: {
|
||||||
|
|
|
@ -15,7 +15,8 @@ export const environment: Environment = {
|
||||||
title: `[개발] UCapMessenger`,
|
title: `[개발] UCapMessenger`,
|
||||||
|
|
||||||
companyConfig: {
|
companyConfig: {
|
||||||
companyGroupCode: 'LG'
|
companyGroupCode: 'LG',
|
||||||
|
fixedCompanyCode: ''
|
||||||
},
|
},
|
||||||
|
|
||||||
productConfig: {
|
productConfig: {
|
||||||
|
|
|
@ -15,7 +15,8 @@ export const environment: Environment = {
|
||||||
title: `[개발] UCapMessenger`,
|
title: `[개발] UCapMessenger`,
|
||||||
|
|
||||||
companyConfig: {
|
companyConfig: {
|
||||||
companyGroupCode: 'LG'
|
companyGroupCode: 'LG',
|
||||||
|
fixedCompanyCode: ''
|
||||||
},
|
},
|
||||||
|
|
||||||
productConfig: {
|
productConfig: {
|
||||||
|
|
|
@ -38,6 +38,7 @@ export interface Environment {
|
||||||
|
|
||||||
companyConfig: {
|
companyConfig: {
|
||||||
companyGroupCode: string;
|
companyGroupCode: string;
|
||||||
|
fixedCompanyCode: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
productConfig: {
|
productConfig: {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user