회사코드 고정에 따른 enviroment 값 추가.
This commit is contained in:
parent
0f3f64f32f
commit
9079361aa5
|
@ -134,7 +134,7 @@ export class LoginPageComponent implements OnInit, OnDestroy {
|
|||
|
||||
customInitilize() {
|
||||
// Daesang..
|
||||
this.fixedCompany = 'GUC100';
|
||||
this.fixedCompany = environment.companyConfig.fixedCompanyCode;
|
||||
this.fixedNotiBtnText = '이용 주의사항';
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,8 @@ export const environment: Environment = {
|
|||
title: `[개발] DS Talk`,
|
||||
|
||||
companyConfig: {
|
||||
companyGroupCode: 'LG'
|
||||
companyGroupCode: 'LG',
|
||||
fixedCompanyCode: 'GUC100'
|
||||
},
|
||||
|
||||
productConfig: {
|
||||
|
|
|
@ -15,7 +15,8 @@ export const environment: Environment = {
|
|||
title: `DS Talk`,
|
||||
|
||||
companyConfig: {
|
||||
companyGroupCode: 'LG'
|
||||
companyGroupCode: 'LG',
|
||||
fixedCompanyCode: 'GUC100'
|
||||
},
|
||||
|
||||
productConfig: {
|
||||
|
|
|
@ -15,7 +15,8 @@ export const environment: Environment = {
|
|||
title: `[개발] UCapMessenger`,
|
||||
|
||||
companyConfig: {
|
||||
companyGroupCode: 'LG'
|
||||
companyGroupCode: 'LG',
|
||||
fixedCompanyCode: ''
|
||||
},
|
||||
|
||||
productConfig: {
|
||||
|
|
|
@ -15,7 +15,8 @@ export const environment: Environment = {
|
|||
title: `[개발] UCapMessenger`,
|
||||
|
||||
companyConfig: {
|
||||
companyGroupCode: 'LG'
|
||||
companyGroupCode: 'LG',
|
||||
fixedCompanyCode: ''
|
||||
},
|
||||
|
||||
productConfig: {
|
||||
|
|
|
@ -38,6 +38,7 @@ export interface Environment {
|
|||
|
||||
companyConfig: {
|
||||
companyGroupCode: string;
|
||||
fixedCompanyCode: string;
|
||||
};
|
||||
|
||||
productConfig: {
|
||||
|
|
Loading…
Reference in New Issue
Block a user