Country upgrade

This commit is contained in:
CHIEFSOFT\ameye
2023-12-17 08:25:57 -05:00
parent 16ddd20666
commit ab435d7d87
4 changed files with 114 additions and 24 deletions
@@ -1,23 +1,112 @@
Add job
<!--<ion-list class="pop_list">-->
<!-- <ion-list-header>-->
<!-- <ion-label>Credit {{currency_code}} Wallet</ion-label>-->
<!-- </ion-list-header>-->
<!-- <ion-item>-->
<!-- <ion-label>Amount: </ion-label>-->
<!-- <div>{{startCreditResult.amount*0.01| number : '1.2-2' }}</div>-->
<!-- </ion-item>-->
<!-- <ion-item>-->
<!-- <ion-label>Fee: </ion-label>-->
<!-- <div>{{startCreditResult.fee*.01 | number : '1.2-2'}}</div>-->
<!-- </ion-item>-->
<!-- <ion-item>-->
<!-- <ion-label>Total: </ion-label>-->
<!-- <div>{{startCreditResult.total*.01| number : '1.2-2' }}</div>-->
<!-- </ion-item>-->
<!-- <ion-item *ngIf="startCreditResult.card_uid !='' ">-->
<!-- <ion-label>Payment: </ion-label>-->
<!-- <div>{{selPaymentCard.description}} **** **** {{selPaymentCard.digits}}</div>-->
<!-- </ion-item>-->
<!--</ion-list>-->
<div>
<ion-item lines="none">
<ion-input type="text"
maxlength="15"
placeholder="Title"
style="background-color: aliceblue; border-radius: 10px; padding-left: 1px;"
(ionChange)="verifyEntry()"
[(ngModel)]='firstname' ></ion-input>
</ion-item>
<ion-item lines="none">
<ion-input type="text"
maxlength="15"
placeholder="Description"
style="background-color: aliceblue; border-radius: 10px; padding-left: 1px;"
(ionChange)="verifyEntry()"
[(ngModel)]='lastname' ></ion-input>
</ion-item>
<ion-item lines="none">
<ion-input type="text"
maxlength="15"
placeholder="Deelivery Details"
style="background-color: aliceblue; border-radius: 10px; padding-left: 1px;"
(ionChange)="verifyEntry()"
[(ngModel)]='email' ></ion-input>
</ion-item>
<!-- <ion-item lines="none">-->
<!-- <ion-label>Birthday(Year/Month)</ion-label>-->
<!-- </ion-item>-->
<!-- <ion-item lines="none">-->
<!-- <ion-grid>-->
<!-- <ion-row style="margin: 0px; padding: 0px;">-->
<!-- <ion-col style="margin: 0px; padding: 4px;">-->
<!-- <div style="width: 100%; background-color: #8b198e;">-->
<!-- <div style="width: 30%; float: left;">-->
<!-- Year-->
<!-- </div>-->
<!-- <div style="width: 70%; float: right;">-->
<!-- <ion-select aria-label="Year"-->
<!-- (ionChange)="verifyEntry()"-->
<!-- [(ngModel)]='year'-->
<!-- style="background-color: aliceblue; border-radius: 10px; font-size: 12px; width:100%;">-->
<!-- <ion-select-option *ngFor="let item1 of regYear" value="{{item1}}">{{item1}}</ion-select-option>-->
<!-- </ion-select>-->
<!-- </div>-->
<!-- </div>-->
<!-- </ion-col>-->
<!-- </ion-row>-->
<!-- <ion-row style="margin: 0px; padding: 0px;">-->
<!-- <ion-col style="margin: 0px; padding: 4px; ">-->
<!-- <div style="width: 100%; background-color: #8b198e;">-->
<!-- <div style="width: 30%; float: left;">-->
<!-- Month-->
<!-- </div>-->
<!-- <div style="width: 70%; float: right;">-->
<!-- <ion-select aria-label="Month"-->
<!-- (ionChange)="verifyEntry()"-->
<!-- [(ngModel)]='month'-->
<!-- expand="block"-->
<!-- style="background-color: aliceblue; border-radius: 10px; width: 100%; font-size: 12px;">-->
<!-- <ion-select-option *ngFor="let item of regMonth;" value="{{item[0]}}">{{item[1]}}</ion-select-option>-->
<!-- </ion-select>-->
<!-- </div>-->
<!-- </div>-->
<!-- </ion-col>-->
<!-- </ion-row>-->
<!-- </ion-grid>-->
<!-- </ion-item>-->
<!-- <ion-grid>-->
<!-- <ion-row>-->
<!-- <ion-col style="text-align: left">-->
<!-- <ion-button (click)="setCloseModal()" size="small" shape="round" color="danger">-->
<!-- Close-->
<!-- </ion-button>-->
<!-- </ion-col>-->
<!-- <ion-col>-->
<!-- <div style="text-align: right;">-->
<!-- {{addFamilyResult}}-->
<!-- <ion-button shape="round"-->
<!-- [disabled]="isDisabled"-->
<!-- size="small"-->
<!-- (click)="inviteFamily()">Send Invite</ion-button>-->
<!-- </div>-->
<!-- </ion-col>-->
<!-- </ion-row>-->
<!-- </ion-grid>-->
</div>
+1 -1
View File
@@ -15,7 +15,7 @@
<ion-item lines="none">
<ion-select (ionChange)="verReg()" label="Select Country" placeholder="Select Country" [(ngModel)]='country'>
<ion-select-option *ngFor="let item of signupCountry" value="{{item[0]}}">{{item[1]}}</ion-select-option>
<ion-select-option *ngFor="let item of signupCountry" value="{{item.code}}">{{item.country}}</ion-select-option>
<!-- <ion-select-option value="NG">Nigeria</ion-select-option>-->
<!-- <ion-select-option value="US">United States</ion-select-option>-->
</ion-select>
+1 -1
View File
@@ -77,7 +77,7 @@ export class RegisterPage implements OnInit {
}
this.wrenchService.signUpCountry(reqD).subscribe((result)=>{
this.signupCountry = result.signup_country;
this.signupCountry = result.result_list;
console.log("this.signupCountry == > " ,this.signupCountry);
});
}
+1
View File
@@ -64,6 +64,7 @@ ionic generate component myjob-offers
ionic generate component add-jobs
ionic generate component add-family
ionic generate component add-relatives
pendingoffers