tab3.page.ts 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. import { Component } from '@angular/core';
  2. import { IonHeader, IonToolbar, IonTitle, IonContent, IonSearchbar, IonIcon, IonTabButton, IonTabs, IonTabBar, IonLabel, IonMenu, IonList, IonItem, IonMenuButton } from '@ionic/angular/standalone';
  3. import { Router } from '@angular/router';
  4. @Component({
  5. selector: 'app-tab3',
  6. templateUrl: 'tab3.page.html',
  7. styleUrls: ['tab3.page.scss'],
  8. standalone: true,
  9. imports: [
  10. IonHeader, IonToolbar, IonTitle, IonContent,
  11. IonSearchbar, IonIcon, IonTabButton, IonTabs, IonTabBar, IonLabel,
  12. IonMenu, IonList, IonItem, IonMenuButton
  13. ],
  14. })
  15. export class Tab3Page {
  16. artworks = [
  17. {
  18. id: '1',
  19. image: 'assets/img/xingkong.png',
  20. title: '梵高-星空高清画作',
  21. description: '致敬梵高 #艺术品 #星空',
  22. avatarUrl: 'assets/img/book1.png',
  23. userName: '星空艺术家',
  24. date: '12-01',
  25. likes: 1687,
  26. category: 'art'
  27. },
  28. {
  29. id: '2',
  30. image: 'assets/img/xiangrikui.png',
  31. title: '梵高《向日葵》',
  32. description: '经典中的经典,笔触很牛!#花',
  33. avatarUrl: 'assets/img/book2.png',
  34. userName: '艺术鉴赏家',
  35. date: '11-30',
  36. likes: 2341,
  37. category: 'art'
  38. },
  39. {
  40. id: '3',
  41. image: 'assets/img/fangao.png',
  42. title: '梵高自画像',
  43. description: '梵高生平自画像之其中🔟副👩‍🎨 #艺术欣赏 #美',
  44. avatarUrl: 'assets/img/book3.png',
  45. userName: '艺术探索者',
  46. date: '11-29',
  47. likes: 1892,
  48. category: 'art'
  49. },
  50. {
  51. id: '4',
  52. image: 'assets/img/cunzhuang.png',
  53. title: '阿尔小镇',
  54. description: '走吧,梵高,去你最爱的阿尔看看,阿尔小镇',
  55. avatarUrl: 'assets/img/book4.png',
  56. userName: '风景画师',
  57. date: '11-28',
  58. likes: 2156,
  59. category: 'art'
  60. }
  61. ];
  62. ngOnInit() {
  63. this.red_underline('发现');
  64. }
  65. constructor(private router: Router) { }
  66. red_underline(text: string) {
  67. const prevUnderlined = document.querySelectorAll('span[underline="true"]') as NodeListOf<HTMLElement>;
  68. prevUnderlined.forEach((el: HTMLElement) => {
  69. el.style.textDecoration = 'none';
  70. el.removeAttribute('underline');
  71. });
  72. const target = document.querySelector(`span[data-id="${text}"]`) as HTMLElement;
  73. if (target) {
  74. // target.style.textDecoration = 'underline';
  75. // target.style.textDecorationColor = 'red';
  76. target.setAttribute('underline', 'true');
  77. }
  78. }
  79. goToDetail(artId: string) {
  80. console.log('Navigating to artwork:', artId);
  81. this.router.navigate(['/tabs/art-detail', artId], {
  82. state: { artwork: this.artworks.find(art => art.id === artId) }
  83. });
  84. }
  85. goToCategory(category: string) {
  86. this.router.navigate(['/tabs/category', category]);
  87. }
  88. }