s-tabbar.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view class="u-page__item" v-if="tabbar?.items?.length > 0">
  3. <su-tabbar
  4. :value="path"
  5. :fixed="true"
  6. :placeholder="true"
  7. :safeAreaInsetBottom="true"
  8. :inactiveColor="tabbar.style.color"
  9. :activeColor="tabbar.style.activeColor"
  10. :midTabBar="tabbar.mode === 2"
  11. :customStyle="tabbarStyle"
  12. >
  13. <su-tabbar-item
  14. v-for="(item, index) in tabbar.items"
  15. :key="item.text"
  16. :text="item.text"
  17. :name="item.url"
  18. :isCenter="getTabbarCenter(index)"
  19. :centerImage="sheep.$url.cdn(item.iconUrl)"
  20. @tap="sheep.$router.go(item.url)"
  21. >
  22. <template v-slot:active-icon>
  23. <image class="u-page__item__slot-icon" :src="sheep.$url.cdn(item.activeIconUrl)"></image>
  24. </template>
  25. <template v-slot:inactive-icon>
  26. <image class="u-page__item__slot-icon" :src="sheep.$url.cdn(item.iconUrl)"></image>
  27. </template>
  28. </su-tabbar-item>
  29. </su-tabbar>
  30. </view>
  31. </template>
  32. <script setup>
  33. import { computed, unref } from 'vue';
  34. import sheep from '@/sheep';
  35. const tabbar = computed(() => {
  36. return sheep.$store('app').template.basic?.tabbar;
  37. });
  38. const tabbarStyle = computed(() => {
  39. const backgroundStyle = tabbar.value.style;
  40. if (backgroundStyle.bgType === 'color') {
  41. return { background: backgroundStyle.bgColor };
  42. }
  43. if (backgroundStyle.bgType === 'img')
  44. return {
  45. background: `url(${sheep.$url.cdn(
  46. backgroundStyle.bgImg,
  47. )}) no-repeat top center / 100% auto`,
  48. };
  49. });
  50. const getTabbarCenter = (index) => {
  51. if (unref(tabbar).mode !== 2) return false;
  52. return unref(tabbar).items % 2 > 0
  53. ? Math.ceil(unref(tabbar).items.length / 2) === index + 1
  54. : false;
  55. };
  56. const props = defineProps({
  57. path: String,
  58. default: '',
  59. });
  60. </script>
  61. <style lang="scss">
  62. .u-page {
  63. padding: 0;
  64. &__item {
  65. &__title {
  66. color: var(--textSize);
  67. background-color: #fff;
  68. padding: 15px;
  69. font-size: 15px;
  70. &__slot-title {
  71. color: var(--textSize);
  72. font-size: 14px;
  73. }
  74. }
  75. &__slot-icon {
  76. width: 25px;
  77. height: 25px;
  78. }
  79. }
  80. }
  81. </style>