From 66bf3545f7b39d8f7b7d895cd038bef3a193c9f4 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Mon, 27 Nov 2023 10:03:27 -0500 Subject: [PATCH] my files --- src/app/pages/myfiles/myfiles.page.html | 20 +++++++++++--------- src/app/pages/myfiles/myfiles.page.ts | 8 +++++--- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/src/app/pages/myfiles/myfiles.page.html b/src/app/pages/myfiles/myfiles.page.html index 5a5c5db..05e0b8f 100644 --- a/src/app/pages/myfiles/myfiles.page.html +++ b/src/app/pages/myfiles/myfiles.page.html @@ -39,6 +39,8 @@ + +
@@ -48,11 +50,11 @@
{{item.title}} {{item.description}} - {{item.file_name}} + {{item.file_name}}
- +
@@ -79,10 +81,10 @@ - - -
- Return -
-
-
+ + + + + + + diff --git a/src/app/pages/myfiles/myfiles.page.ts b/src/app/pages/myfiles/myfiles.page.ts index 7190aa1..fdc5729 100644 --- a/src/app/pages/myfiles/myfiles.page.ts +++ b/src/app/pages/myfiles/myfiles.page.ts @@ -13,7 +13,8 @@ export class MyfilesPage implements OnInit { tabs = 'myfiles'; - + session_image_server:string=''; + curr_session:string=""; constructor( private navctr: NavController, private router: Router, @@ -26,7 +27,9 @@ export class MyfilesPage implements OnInit { ngOnInit() { - this.getMyFiles(); + this.session_image_server = this.sessionDataProviderService.session_image_server; + this.curr_session = this.sessionDataProviderService.session; + this.getMyFiles(); } onBack() { @@ -64,7 +67,6 @@ export class MyfilesPage implements OnInit { console.log("myFilesData RETURN DATA->", this.myFilesData); } ); - } }