index.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <view v-if="sharePacket.isState" class='sharing-packets' :class='sharePacket.isState && showAnimate ? "":"right"'>
  3. <view class='sharing-con' @click='goShare'>
  4. <!-- <image :src="imgHost + '/statics/images/red-packets.png'" /> -->
  5. <image src="@/static/images/red-packets.png" />
  6. <view class='text font-color'>
  7. <view>{{$t(`共富1580`)}}</view>
  8. <view class='money'><text class='label'></text>{{sharePacket.priceName}}</view>
  9. <view class='tip'>{{$t(`推广享红积分`)}}</view>
  10. <!-- <view class='shareBut' open-type="share">{{$t(`立即分享`)}}</view> -->
  11. <button open-type="share" shape="circle" :plain="true" :hairline="false" class='shareBut'>
  12. {{$t(`立即分享`)}}
  13. </button>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. import {HTTP_REQUEST_URL} from '@/config/app';
  20. export default {
  21. props: {
  22. sharePacket: {
  23. type: Object,
  24. default: function() {
  25. return {
  26. isState: true,
  27. priceName: ''
  28. }
  29. }
  30. },
  31. showAnimate: {
  32. type: Boolean,
  33. default: true
  34. },
  35. },
  36. watch: {
  37. showAnimate(nVal, oVal) {
  38. setTimeout(res => {
  39. this.isAnimate = nVal
  40. }, 1000)
  41. }
  42. },
  43. data() {
  44. return {
  45. imgHost:HTTP_REQUEST_URL,
  46. isAnimate: true
  47. };
  48. },
  49. methods: {
  50. closeShare: function() {
  51. this.$emit('closeChange');
  52. },
  53. goShare: function() {
  54. console.log(this.isAnimate)
  55. if (this.isAnimate) {
  56. this.$emit('listenerActionSheet');
  57. } else {
  58. this.isAnimate = true
  59. this.$emit('boxStatus', true);
  60. }
  61. }
  62. }
  63. }
  64. </script>
  65. <style scoped lang="scss">
  66. .sharing-packets {
  67. position: fixed;
  68. left: 30rpx;
  69. bottom: 200rpx;
  70. z-index: 5;
  71. transition: all 0.3s ease-in-out 0s;
  72. opacity: 1;
  73. transform: scale(1);
  74. &.right {
  75. left: -170rpx;
  76. }
  77. }
  78. // .sharing-packets.on {
  79. // transform: scale(0);
  80. // opacity: 0;
  81. // }
  82. .sharing-packets .iconfont {
  83. width: 44rpx;
  84. height: 44rpx;
  85. border-radius: 50%;
  86. text-align: center;
  87. line-height: 44rpx;
  88. background-color: #999;
  89. font-size: 20rpx;
  90. color: #fff;
  91. margin: 0 auto;
  92. box-sizing: border-box;
  93. padding-left: 1px;
  94. }
  95. .sharing-packets .line {
  96. width: 2rpx;
  97. height: 40rpx;
  98. background-color: #999;
  99. margin: 0 auto;
  100. }
  101. .sharing-packets .sharing-con {
  102. width: 187rpx;
  103. height: 210rpx;
  104. position: relative;
  105. }
  106. .sharing-packets .sharing-con image {
  107. width: 100%;
  108. height: 100%;
  109. }
  110. .sharing-packets .sharing-con .text {
  111. position: absolute;
  112. top: 30rpx;
  113. font-size: 20rpx;
  114. width: 100%;
  115. text-align: center;
  116. }
  117. .sharing-packets .sharing-con .text .money {
  118. font-size: 32rpx;
  119. font-weight: bold;
  120. margin-top: 5rpx;
  121. }
  122. .sharing-packets .sharing-con .text .money .label {
  123. font-size: 20rpx;
  124. }
  125. .sharing-packets .sharing-con .text .tip {
  126. font-size: 18rpx;
  127. color: #999;
  128. margin-top: 5rpx;
  129. }
  130. .sharing-packets .sharing-con .text .shareBut {
  131. border: none !important;
  132. font-size: 22rpx;
  133. color: #fff;
  134. margin-top: 14rpx;
  135. height: 50rpx;
  136. line-height: 50rpx;
  137. }
  138. </style>