detail-tabbar.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <!-- 商品详情的底部导航 -->
  2. <template>
  3. <su-fixed bottom placeholder bg="bg-white">
  4. <view class="ui-tabbar-box">
  5. <view class="ui-tabbar ss-flex ss-col-center ss-row-between">
  6. <view v-if="serviceIcon" class="detail-tabbar-item ss-flex ss-flex-col ss-row-center ss-col-center"
  7. @tap="onIndex">
  8. <image class="item-icon" src="@/static/icon/index.png"
  9. mode="aspectFit" />
  10. <view class="item-title">首页</view>
  11. </view>
  12. <view v-if="serviceIcon" class="detail-tabbar-item ss-flex ss-flex-col ss-row-center ss-col-center"
  13. @tap="onChat">
  14. <image class="item-icon" src="@/static/icon/shop.png"
  15. mode="aspectFit" />
  16. <view class="item-title">店铺</view>
  17. </view>
  18. <!-- <view v-if="serviceIcon" class="detail-tabbar-item ss-flex ss-flex-col ss-row-center ss-col-center"
  19. @tap="onChat">
  20. <image class="item-icon" src="@/static/icon/service.png"
  21. mode="aspectFit" />
  22. <view class="item-title">客服</view>
  23. </view> -->
  24. <view v-if="shareIcon" class="detail-tabbar-item ss-flex ss-flex-col ss-row-center ss-col-center"
  25. @tap="showShareModal">
  26. <image class="item-icon" src="@/static/icon/cart.png"
  27. mode="aspectFit" />
  28. <view class="item-title">购物车</view>
  29. </view>
  30. <!-- <view v-if="shareIcon" class="detail-tabbar-item ss-flex ss-flex-col ss-row-center ss-col-center"
  31. @tap="showShareModal">
  32. <image class="item-icon" :src="sheep.$url.static('/static/img/shop/goods/share.png')"
  33. mode="aspectFit" />
  34. <view class="item-title">分享</view>
  35. </view> -->
  36. <slot></slot>
  37. </view>
  38. </view>
  39. </su-fixed>
  40. </template>
  41. <script setup>
  42. /**
  43. *
  44. * 底部导航
  45. *
  46. * @property {String} bg - 背景颜色Class
  47. * @property {String} ui - 自定义样式Class
  48. * @property {Boolean} noFixed - 是否定位
  49. * @property {Boolean} topRadius - 上圆角
  50. */
  51. import {
  52. reactive
  53. } from 'vue';
  54. import sheep from '@/sheep';
  55. import {
  56. showShareModal
  57. } from '@/sheep/hooks/useModal';
  58. import FavoriteApi from '@/sheep/api/product/favorite';
  59. // 数据
  60. const state = reactive({});
  61. // 接收参数
  62. const props = defineProps({
  63. modelValue: {
  64. type: Object,
  65. default () {},
  66. },
  67. bg: {
  68. type: String,
  69. default: 'bg-white',
  70. },
  71. bgStyles: {
  72. type: Object,
  73. default () {},
  74. },
  75. ui: {
  76. type: String,
  77. default: '',
  78. },
  79. noFixed: {
  80. type: Boolean,
  81. default: false,
  82. },
  83. topRadius: {
  84. type: Number,
  85. default: 0,
  86. },
  87. collectIcon: {
  88. type: Boolean,
  89. default: true,
  90. },
  91. serviceIcon: {
  92. type: Boolean,
  93. default: true,
  94. },
  95. shareIcon: {
  96. type: Boolean,
  97. default: true,
  98. },
  99. });
  100. async function onFavorite() {
  101. // 情况一:取消收藏
  102. if (props.modelValue.favorite) {
  103. const {
  104. code
  105. } = await FavoriteApi.deleteFavorite(props.modelValue.id);
  106. if (code !== 0) {
  107. return
  108. }
  109. sheep.$helper.toast('取消收藏');
  110. props.modelValue.favorite = false;
  111. // 情况二:添加收藏
  112. } else {
  113. const {
  114. code
  115. } = await FavoriteApi.createFavorite(props.modelValue.id);
  116. if (code !== 0) {
  117. return
  118. }
  119. sheep.$helper.toast('收藏成功');
  120. props.modelValue.favorite = true;
  121. }
  122. }
  123. const onChat = () => {
  124. sheep.$router.go('/pages/chat/index', {
  125. id: props.modelValue.id,
  126. });
  127. };
  128. const onIndex = () => {
  129. sheep.$router.go('/pages/index/index');
  130. }
  131. </script>
  132. <style lang="scss" scoped>
  133. .ui-tabbar-box {
  134. box-shadow: 0px -6px 10px 0px rgba(51, 51, 51, 0.2);
  135. }
  136. .ui-tabbar {
  137. display: flex;
  138. height: 50px;
  139. background: #fff;
  140. .detail-tabbar-item {
  141. width: 100rpx;
  142. .item-icon {
  143. width: 40rpx;
  144. height: 40rpx;
  145. }
  146. .item-title {
  147. font-size: 20rpx;
  148. font-weight: 500;
  149. line-height: 20rpx;
  150. margin-top: 12rpx;
  151. }
  152. }
  153. }
  154. </style>