tab1.page.html 1020 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!-- tab1.page.html -->
  2. <ion-header>
  3. <ion-toolbar>
  4. <ion-title>
  5. 首页
  6. </ion-title>
  7. </ion-toolbar>
  8. </ion-header>
  9. <ion-content>
  10. <ion-grid>
  11. <ion-row>
  12. <ion-col size="12">
  13. <!-- 搜索框 -->
  14. <ion-searchbar placeholder="输入关键字搜索"></ion-searchbar>
  15. </ion-col>
  16. </ion-row>
  17. <!-- 导航栏 -->
  18. <ion-toolbar>
  19. <ion-segment value="explore">
  20. <ion-segment-button value="explore">
  21. 发现
  22. </ion-segment-button>
  23. <ion-segment-button value="video">
  24. 视频
  25. </ion-segment-button>
  26. <ion-segment-button value="search">
  27. 搜索
  28. </ion-segment-button>
  29. </ion-segment>
  30. </ion-toolbar>
  31. <!-- 功能栏 -->
  32. <ion-row>
  33. <ion-col size="4">
  34. <!-- 轮播图 -->
  35. </ion-col>
  36. <ion-col size="4">
  37. <!-- 案例设计 -->
  38. </ion-col>
  39. <ion-col size="4">
  40. <!-- 一键寻宝 -->
  41. </ion-col>
  42. </ion-row>
  43. </ion-grid>
  44. </ion-content>