h
Size: a a a
h
OM
MK
ВС
DT
this.userPanelData = combineLatest([
this.store.select(selectUser),
this.store.select(selectLoanCurrentInfo),
this.store.select(selectRefinanceOptions),
this.store.select(selectLoanState)
]).pipe(
map((responses) => {
console.log(responses);
return {
user: responses[0],
loanCurrentInfo: responses[1],
refinanceOptions: responses[2],
loanState: responses[3],
};
})
);
GS
this.userPanelData = combineLatest([
this.store.select(selectUser),
this.store.select(selectLoanCurrentInfo),
this.store.select(selectRefinanceOptions),
this.store.select(selectLoanState)
]).pipe(
map((responses) => {
console.log(responses);
return {
user: responses[0],
loanCurrentInfo: responses[1],
refinanceOptions: responses[2],
loanState: responses[3],
};
})
);
DT
DT
OM
OM
D
OM
L
this.userPanelData = combineLatest([
this.store.select(selectUser),
this.store.select(selectLoanCurrentInfo),
this.store.select(selectRefinanceOptions),
this.store.select(selectLoanState)
]).pipe(
map((responses) => {
console.log(responses);
return {
user: responses[0],
loanCurrentInfo: responses[1],
refinanceOptions: responses[2],
loanState: responses[3],
};
})
);
L
this.userPanelData = combineLatest([
this.store.select(selectUser),
this.store.select(selectLoanCurrentInfo),
this.store.select(selectRefinanceOptions),
this.store.select(selectLoanState)
]).pipe(
map(([s1, s2, s3, s4]) => ({s1, s2, s3, s4})
})
);
L
DT
L