tabs.page.html 858 B

12345678910111213141516171819202122232425
  1. <!-- tabs.page.html -->
  2. <ion-tabs>
  3. <ion-tab-bar slot="bottom" class="custom-tab-bar">
  4. <!-- 首页Tab -->
  5. <ion-tab-button tab="tab1" href="/tabs/tab1">
  6. <ion-icon aria-hidden="true" name="home-outline"></ion-icon>
  7. <ion-label>首页</ion-label>
  8. <ion-badge *ngIf="homeBadgeCount > 0" color="danger" class="badge">{{homeBadgeCount}}</ion-badge>
  9. </ion-tab-button>
  10. <!-- AI咨询Tab (修改为简约风格) -->
  11. <ion-tab-button tab="tab2" href="/tabs/tab2">
  12. <ion-icon aria-hidden="true" name="chatbubble-outline"></ion-icon>
  13. <ion-label>咨询</ion-label>
  14. </ion-tab-button>
  15. <!-- 个人中心Tab -->
  16. <ion-tab-button tab="tab3" href="/tabs/tab3">
  17. <ion-icon aria-hidden="true" name="person-outline"></ion-icon>
  18. <ion-label>我的</ion-label>
  19. </ion-tab-button>
  20. </ion-tab-bar>
  21. </ion-tabs>