.
@@ -89,7 +98,34 @@
Assign to individual
- Second Content
+
+
+
+
+ Recipient Email
+
+
+
+
+
+
+
+
+
+
+
+
+ Send offer to individual
+
+
+ .
+
+
+
+
diff --git a/src/app/pages/ownersjob/ownersjob.page.scss b/src/app/pages/ownersjob/ownersjob.page.scss
index d63650a..2edb0e9 100644
--- a/src/app/pages/ownersjob/ownersjob.page.scss
+++ b/src/app/pages/ownersjob/ownersjob.page.scss
@@ -90,6 +90,9 @@ ion-content {
background-color: aliceblue;
margin-top: 15px;
min-height: 250px;
+ .act_but{
+ text-align: right;
+ }
}
.about {
diff --git a/src/app/pages/ownersjob/ownersjob.page.ts b/src/app/pages/ownersjob/ownersjob.page.ts
index 862f212..2b02737 100644
--- a/src/app/pages/ownersjob/ownersjob.page.ts
+++ b/src/app/pages/ownersjob/ownersjob.page.ts
@@ -1,5 +1,5 @@
import { Component, OnInit } from '@angular/core';
-import {NavController} from "@ionic/angular";
+import {LoadingController, NavController} from "@ionic/angular";
import {Router} from "@angular/router";
import {SessionDataProviderService} from "../../store/session-data-provider.service";
import {WrenchService} from "../../services/wrench.service";
@@ -19,7 +19,8 @@ export class OwnersjobPage implements OnInit {
private navctr: NavController,
private router: Router,
public sessionDataProviderService: SessionDataProviderService,
- private wrenchService: WrenchService
+ private wrenchService: WrenchService,
+ private loadingCtrl: LoadingController
) {
this.jobData = this.router.getCurrentNavigation().extras.state?.jobData;
@@ -37,4 +38,23 @@ export class OwnersjobPage implements OnInit {
//this.activeJobMsgList();
}
+ async sendOfferToIndividual(){
+ const loading = await this.loadingCtrl.create({
+ message: 'Sending...',
+ duration: 5000,
+ });
+
+ loading.present();
+
+ }
+
+ async sendOfferToMarket(){
+ const loading = await this.loadingCtrl.create({
+ message: 'Sending...',
+ duration: 5000,
+ });
+
+ loading.present();
+
+ }
}