From 909008918ac71972e1cb4f2259461b5c94b437c2 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 12 Jul 2024 16:19:49 -0400 Subject: [PATCH] play grounf update --- .../playground/playground.page.html | 78 ++++++++++--------- .../playground/playground.page.ts | 8 ++ 2 files changed, 48 insertions(+), 38 deletions(-) diff --git a/src/app/pages-family/playground/playground.page.html b/src/app/pages-family/playground/playground.page.html index ba6bebf..27a1e8b 100644 --- a/src/app/pages-family/playground/playground.page.html +++ b/src/app/pages-family/playground/playground.page.html @@ -5,7 +5,7 @@ - Playgroud + Playground @@ -19,49 +19,59 @@
A.I. Playground -
- - - - - - - - - -
-
+
{{item.name}}
- - - - - - - -
+
- - -
- - - - -
- +
{{item.name}}
+
+
+
+
+ {{iteml.title}} + {{iteml.description}} +
+
+
+ +
+
+
+ +
+ +
+ +
COL
+ +
+ +
+ +
SHA
+ +
+ + + +
+
+
+ {{item.name}} + +
@@ -82,11 +92,3 @@
- - - - - - - - diff --git a/src/app/pages-family/playground/playground.page.ts b/src/app/pages-family/playground/playground.page.ts index 051be34..1a68dd7 100644 --- a/src/app/pages-family/playground/playground.page.ts +++ b/src/app/pages-family/playground/playground.page.ts @@ -14,6 +14,7 @@ export class PlaygroundPage implements OnInit { tabs = 'about'; + tabMode = 'featured' constructor( private navctr: NavController, @@ -42,6 +43,8 @@ export class PlaygroundPage implements OnInit { playListTotalData:any; playListData: []; playFastMenu:[]; + featuredListData:[]; + paygroundData(){ @@ -56,11 +59,16 @@ export class PlaygroundPage implements OnInit { // console.log("REFER RETURN->", this.referTotalData); this.playFastMenu = this.playListTotalData.layer_menu; this.playListData = this.playListTotalData.result_list; + this.featuredListData = this.playListTotalData.featured; console.log("playListTotalData RETURN DATA->", this.playListData); } ); } + changeTab(item){ + // alert(item); + this.tabMode = item.tab; + } }