floatButton.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <view class="btn-group">
  3. <view class="btn" @tap="toShare()" v-if="isShare">
  4. <text class="iconfont icon-fenxiang"></text>
  5. <text class="text">分享</text>
  6. </view>
  7. <view class="btn" @tap="toCart()" v-if="isCart">
  8. <text class="iconfont icon-gouwuche"></text>
  9. <text class="text">购物车</text>
  10. </view>
  11. <button class="btn" open-type="contact" v-if="isService">
  12. <text class="iconfont icon-kefu"></text>
  13. <text class="text">在线客服</text>
  14. </button>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. props: {
  20. isDock: {
  21. type: Boolean,
  22. default: false
  23. },
  24. customBar: {
  25. type: Boolean,
  26. default: false
  27. }
  28. },
  29. data() {
  30. return {
  31. }
  32. },
  33. computed: {
  34. curRoute() {
  35. let routes = getCurrentPages();
  36. return routes[routes.length - 1].route;
  37. },
  38. isCart() {
  39. return ![
  40. 'pages/login/index',
  41. 'packageGoods/pages/cart',
  42. 'pages/mine/index',
  43. 'packageGoods/pages/detail',
  44. 'packageGoods/pages/order',
  45. 'pages/mine/order/detail',
  46. 'packageGoods/pages/coupon',
  47. 'pages/mine/coupon/list',
  48. ].includes(this.curRoute);
  49. },
  50. isService() {
  51. return ![
  52. 'pages/login/index',
  53. 'packageGoods/pages/cart',
  54. 'pages/mine/index',
  55. 'packageGoods/pages/order',
  56. 'pages/mine/order/detail',
  57. 'packageGoods/pages/coupon',
  58. 'pages/mine/coupon/list',
  59. ].includes(this.curRoute);
  60. },
  61. isShare() {
  62. return [
  63. 'pages/mine/groupbuy/list',
  64. 'packageGoods/pages/activity',
  65. ].includes(this.curRoute);
  66. }
  67. },
  68. mounted() {
  69. },
  70. methods: {
  71. toCart() {
  72. this.$navToPage({
  73. url: '/packageGoods/pages/cart'
  74. });
  75. },
  76. toShare() {
  77. uni.$emit('hanbleShare');
  78. },
  79. }
  80. }
  81. </script>
  82. <style lang="scss" scoped>
  83. .btn-group {
  84. position: fixed;
  85. bottom: 20vh;
  86. right: 20rpx;
  87. z-index: 999998;
  88. .btn {
  89. width: 92rpx;
  90. height: 92rpx;
  91. background: #ffffff;
  92. box-shadow: 0 2rpx 8rpx 2rpx rgba(0,0,0,.3);
  93. transition: all .5s;
  94. text-align: center;
  95. border-radius: 50%;
  96. color: #333333;
  97. margin-top: 15rpx;
  98. display: flex;
  99. flex-direction: column;
  100. align-items: center;
  101. justify-content: center;
  102. padding: 0;
  103. padding-bottom: 8rpx;
  104. line-height: 1;
  105. box-sizing: border-box;
  106. &::after {
  107. border: none;
  108. }
  109. .iconfont {
  110. font-size: 44rpx;
  111. }
  112. .text {
  113. font-size: 18rpx;
  114. margin-top: 6rpx;
  115. }
  116. }
  117. }
  118. </style>