|
|
|
|
@ -86,22 +86,29 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
this.basicDetailsSegment = false;
|
|
|
|
|
this.addressSegment = false;
|
|
|
|
|
this.familyMemberSegment = false;
|
|
|
|
|
this.contactSegment = false;
|
|
|
|
|
this.familyMemberSegment = false;
|
|
|
|
|
} else if (this.targetValue === 'basicDetails') {
|
|
|
|
|
this.personalInfoSegment = false;
|
|
|
|
|
this.basicDetailsSegment = true;
|
|
|
|
|
this.addressSegment = false;
|
|
|
|
|
this.familyMemberSegment = false;
|
|
|
|
|
} else if (this.targetValue === 'address') {
|
|
|
|
|
this.personalInfoSegment = false;
|
|
|
|
|
this.basicDetailsSegment = false;
|
|
|
|
|
this.addressSegment = true;
|
|
|
|
|
this.familyMemberSegment = false;
|
|
|
|
|
} else if (this.targetValue === 'fmaily') {
|
|
|
|
|
} else if (this.targetValue === 'family') {
|
|
|
|
|
this.personalInfoSegment = false;
|
|
|
|
|
this.basicDetailsSegment = false;
|
|
|
|
|
this.addressSegment = false;
|
|
|
|
|
this.familyMemberSegment = true;
|
|
|
|
|
} else {
|
|
|
|
|
} else if (this.targetValue == 'contact') {
|
|
|
|
|
|
|
|
|
|
this.personalInfoSegment = false;
|
|
|
|
|
this.basicDetailsSegment = false;
|
|
|
|
|
this.addressSegment = true;
|
|
|
|
|
this.editBasic = false;
|
|
|
|
|
this.editAddress = false;
|
|
|
|
|
this.familyMemberSegment = false;
|
|
|
|
|
this.contactSegment = true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
this.personalInfoSegment = true;
|
|
|
|
|
this.basicDetailsSegment = false;
|
|
|
|
|
this.addressSegment = false;
|
|
|
|
|
|