mentioned.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <template>
  2. <view :style="viewColor">
  3. <view class="container" :class="popup.show==true?'on':''">
  4. <view class="header">
  5. <text class="title">TA提到的宝贝</text>
  6. <text class="iconfont icon-guanbi5" @click="closePopup"></text>
  7. </view>
  8. <view class="main_count" :class="isHome ? 'mb90' : ''">
  9. <scroll-view scroll-y="true">
  10. <view v-for="(item, index) in list" :key="index" @click="goDetail(item.spu)" class="list">
  11. <view class="pro_list">
  12. <view class="picture">
  13. <image :src="item.spu && item.spu.image" class="image"></image>
  14. </view>
  15. <view class="info">
  16. <view class="name line2">{{item.spu && item.spu.store_name}}</view>
  17. <view class="bottom">
  18. <view class="price">¥<text>{{item.spu && item.spu.price}}</text></view>
  19. <view class="buy-btn">立即购买</view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </scroll-view>
  25. </view>
  26. </view>
  27. <view class='mask' catchtouchmove="true" :hidden='popup.show==false' @tap="closePopup"></view>
  28. </view>
  29. </template>
  30. <script>
  31. import { goShopDetail } from '@/libs/order.js'
  32. import { mapGetters } from "vuex";
  33. export default {
  34. computed:{
  35. ...mapGetters(['viewColor']),
  36. },
  37. props:{
  38. list: {
  39. type: Array,
  40. default: []
  41. },
  42. uid: {
  43. type: Number,
  44. },
  45. isHome: {
  46. type: Boolean,
  47. default: false
  48. }
  49. },
  50. data() {
  51. return {
  52. popup: {
  53. show: false
  54. },
  55. };
  56. },
  57. methods: {
  58. // 点击关闭按钮
  59. closePopup() {
  60. this.$set(this.popup, 'show', false);
  61. },
  62. showPopup() {
  63. this.$set(this.popup, 'show', true);
  64. },
  65. goDetail(item){
  66. if (item.product_type === 1) {
  67. uni.navigateTo({
  68. url: `/pages/activity/goods_seckill_details/index?id=${item.product_id}&time=${item.stop_time}&spid=${this.uid}`
  69. })
  70. } else if (item.product_type === 2) {
  71. uni.navigateTo({
  72. url: `/pages/activity/presell_details/index?id=${item.activity_id}&spid=${this.uid}`
  73. })
  74. } else if (item.product_type === 0) {
  75. uni.navigateTo({
  76. url: `/pages/goods_details/index?id=${item.product_id}&spid=${this.uid}`
  77. })
  78. }else if (item.product_type === 4) {
  79. uni.navigateTo({
  80. url: `/pages/activity/combination_details/index?id=${item.activity_id}&spid=${this.uid}`
  81. })
  82. }else if (item.product_type === 40) {
  83. uni.navigateTo({
  84. url: `/pages/activity/combination_status/index?id=${item.activity_id}&spid=${this.uid}`
  85. })
  86. }
  87. }
  88. }
  89. }
  90. </script>
  91. <style lang="scss" scoped>
  92. .container{
  93. position: fixed;
  94. bottom: 0;
  95. width: 100%;
  96. left: 0;
  97. background-color: #ffffff;
  98. z-index: 77;
  99. border-radius: 16rpx 16rpx 0 0;
  100. // padding-bottom: 20rpx;
  101. transform: translate3d(0, 100%, 0);
  102. transition: all .3s cubic-bezier(.25, .5, .5, .9);
  103. max-height: 1000rpx;
  104. &.on {
  105. transform: translate3d(0, 0, 0);
  106. }
  107. .header{
  108. position: relative;
  109. padding: 40rpx 30rpx;
  110. .title{
  111. color: #282828;
  112. font-size: 30rpx;
  113. }
  114. .iconfont{
  115. color: #8A8A8A;
  116. font-size: 28rpx;
  117. position: absolute;
  118. top: 0;
  119. right: 0;
  120. }
  121. .icon-guanbi5 {
  122. right: 20rpx;
  123. color: #8a8a8a;
  124. font-size: 30rpx;
  125. line-height: 30rpx;
  126. top: 20rpx;
  127. background-color: transparent;
  128. font-weight: normal;
  129. }
  130. }
  131. scroll-view{
  132. max-height: 800rpx;
  133. }
  134. .main_count{
  135. padding: 0 30rpx 30rpx;
  136. max-height: 800rpx;
  137. overflow-y: scroll;
  138. /* #ifndef MP */
  139. &.mb90{
  140. margin-bottom: 90rpx;
  141. }
  142. /* #endif */
  143. .list{
  144. margin-bottom: 40rpx;
  145. height: auto;
  146. flex-direction: row;
  147. &:last-child{
  148. margin-bottom: 0;
  149. }
  150. }
  151. .pro_list{
  152. display: flex;
  153. flex-direction: row;
  154. .picture,.image,uni-image{
  155. width: 200rpx;
  156. height: 200rpx;
  157. border-radius: 16rpx;
  158. }
  159. .info{
  160. margin-left: 30rpx;
  161. position: relative;
  162. .bottom{
  163. display: flex;
  164. justify-content: space-between;
  165. align-items: center;
  166. width: 460rpx;
  167. position: absolute;
  168. left: 0;
  169. bottom: 10rpx;
  170. flex-direction: row;
  171. }
  172. .name{
  173. color: #282828;
  174. font-size: 30rpx;
  175. line-height: 45rpx;
  176. display: -webkit-box;
  177. width: 460rpx;
  178. }
  179. .price{
  180. color: var(--view-priceColor);
  181. font-size: 26rpx;
  182. font-weight: bold;
  183. flex-direction: row;
  184. align-items: flex-end;
  185. text{
  186. font-size: 34rpx;
  187. }
  188. }
  189. .buy-btn{
  190. color: #fff;
  191. background: var(--view-theme);
  192. border-radius: 26rpx;
  193. width: 140rpx;
  194. height: 48rpx;
  195. display: flex;
  196. align-items: center;
  197. justify-content: center;
  198. font-size: 22rpx;
  199. }
  200. }
  201. }
  202. }
  203. }
  204. </style>