index.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <div class="com-main">
  3. <carousel
  4. v-if="indexBanner.length"
  5. :banner="indexBanner"
  6. :height="'538px'"></carousel>
  7. <sub-nav :secondaryBanner="secondaryBanner"></sub-nav>
  8. <section class="com-width-1200 com-margin-auto">
  9. <pc-title :title="'Trending Products'"></pc-title>
  10. <div class="card-wrap com-margin-auto">
  11. <card
  12. v-for="(item, k) in indexGoodsRankLists"
  13. :key="k"
  14. :cardData="item"
  15. ref="card"
  16. @addCompare="addCompareList"></card>
  17. <transition
  18. @before-enter="beforeEnter"
  19. @enter="enter"
  20. @after-enter="afterEnter">
  21. <div
  22. class="ball"
  23. v-show="shopCarBall"
  24. ref="ball">
  25. <div class="linner_ball"></div>
  26. </div>
  27. </transition>
  28. </div>
  29. </section>
  30. <a
  31. :href="midBanner[0]?.link"
  32. target="_target"
  33. v-if="midBanner.length">
  34. <el-image
  35. lazy
  36. :src="midBanner[0]?.image"
  37. alt="why choose us"
  38. class="middle_banner"
  39. fit="cover"></el-image>
  40. </a>
  41. <section class="com-width-1400 com-margin-auto row-card">
  42. <row-card
  43. v-for="(item, k) in articleList"
  44. :key="k"
  45. :data="item"></row-card>
  46. <!-- <subscription></subscription> -->
  47. </section>
  48. </div>
  49. </template>
  50. <script>
  51. export default {
  52. name: 'IndexPage',
  53. layout: 'default',
  54. async asyncData({ $axios, req }) {
  55. // type:1、首页顶部banner,2、首页小图推荐,3、中部banner,4、,5、推荐文章栏目,6、底部banner,7、社交链接
  56. const temp = await $axios
  57. .get('/c-api/banner/list')
  58. .then(res => res.result?.data || [])
  59. .catch(e => {
  60. console.log(e)
  61. })
  62. const indexBanner = temp.filter(i => i.type === 1)
  63. const secondaryBanner = temp.filter(i => i.type === 2)
  64. // await $axios
  65. // .post('home/indexBanner', {
  66. // site: 1,
  67. // type: 2,
  68. // })
  69. // .catch(e => {
  70. // console.log(e)
  71. // })
  72. const indexGoodsRankLists = await $axios
  73. .post('home/indexGoodsRankLists', {
  74. site: 1,
  75. })
  76. .catch(e => {
  77. console.log(e)
  78. })
  79. const midBanner = await $axios
  80. .post('home/indexBanner', {
  81. site: 1,
  82. type: 3,
  83. })
  84. .catch(e => {
  85. console.log(e)
  86. })
  87. const articleList = await $axios
  88. .post('home/indexBanner', {
  89. site: 1,
  90. type: 5,
  91. })
  92. .catch(e => {
  93. console.log(e)
  94. })
  95. // console.log(indexBanner.result.data, 'indexBanner')
  96. return {
  97. indexBanner,
  98. secondaryBanner,
  99. indexGoodsRankLists: indexGoodsRankLists.result,
  100. midBanner: midBanner.result.data,
  101. articleList: articleList.result.data,
  102. }
  103. },
  104. data() {
  105. return {
  106. indexBanner: [],
  107. secondaryBanner: [],
  108. indexGoodsRankLists: [],
  109. midBanner: [],
  110. articleList: [],
  111. shopCarBall: false,
  112. shopCarBallEl: null,
  113. ss: null,
  114. }
  115. },
  116. created() {},
  117. methods: {
  118. addCompareList(target) {
  119. this.shopCarBallEl = target
  120. this.shopCarBall = true
  121. },
  122. // 动画开始
  123. beforeEnter(el) {
  124. // 获取元素的大小及其相对于视口的位置
  125. if (process.client) {
  126. const dom = this.shopCarBallEl.getBoundingClientRect()
  127. const comparePosition = document
  128. .querySelector('.compare-list')
  129. .getBoundingClientRect()
  130. const offsetX = comparePosition.left - dom.left
  131. const offsetY = dom.top - comparePosition.top - 20
  132. el.style.display = ''
  133. // y轴是曲直向上的,x轴是蜿蜒的向右的
  134. el.style.transform = `translate3D( -${offsetX}px,${offsetY}px,0)`
  135. }
  136. },
  137. enter(el, done) {
  138. // 触发重绘,来实现动画的移动过程
  139. if (process.client) {
  140. this.ss = document.body.offsetHeight
  141. el.style.transform = `translate3D( 0,0,0)`
  142. el.addEventListener('transitionend', done)
  143. }
  144. },
  145. afterEnter(el) {
  146. this.shopCarBall = false
  147. el.style.display = 'none'
  148. },
  149. },
  150. }
  151. </script>
  152. <style lang="scss" scoped>
  153. .card-wrap {
  154. display: grid;
  155. justify-items: center;
  156. justify-content: space-evenly;
  157. // grid-template-columns: repeat(5,1fr);
  158. }
  159. .middle_banner {
  160. width: 100%;
  161. height: 580px;
  162. margin: 0 0 30px;
  163. }
  164. .ball {
  165. position: fixed;
  166. top: 86px;
  167. right: 19%;
  168. width: 20px;
  169. height: 20px;
  170. border-radius: 50%;
  171. background: #e90000;
  172. transition: all 0.5s linear;
  173. z-index: 9999;
  174. .linner_ball {
  175. transition: all 0.5s linear;
  176. }
  177. }
  178. </style>