index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. console.log(temp, 'temp')
  63. const indexBanner = temp.filter(i => i.type === 1)
  64. const secondaryBanner = temp.filter(i => i.type === 2)
  65. // await $axios
  66. // .post('home/indexBanner', {
  67. // site: 1,
  68. // type: 2,
  69. // })
  70. // .catch(e => {
  71. // console.log(e)
  72. // })
  73. const indexGoodsRankLists = await $axios
  74. .post('home/indexGoodsRankLists', {
  75. site: 1,
  76. })
  77. .catch(e => {
  78. console.log(e)
  79. })
  80. const midBanner = await $axios
  81. .post('home/indexBanner', {
  82. site: 1,
  83. type: 3,
  84. })
  85. .catch(e => {
  86. console.log(e)
  87. })
  88. const articleList = await $axios
  89. .post('home/indexBanner', {
  90. site: 1,
  91. type: 5,
  92. })
  93. .catch(e => {
  94. console.log(e)
  95. })
  96. // console.log(indexBanner.result.data, 'indexBanner')
  97. return {
  98. indexBanner,
  99. secondaryBanner,
  100. indexGoodsRankLists: indexGoodsRankLists.result,
  101. midBanner: midBanner.result.data,
  102. articleList: articleList.result.data,
  103. }
  104. },
  105. data() {
  106. return {
  107. indexBanner: [],
  108. secondaryBanner: [],
  109. indexGoodsRankLists: [],
  110. midBanner: [],
  111. articleList: [],
  112. shopCarBall: false,
  113. shopCarBallEl: null,
  114. ss: null,
  115. }
  116. },
  117. created() {},
  118. methods: {
  119. addCompareList(target) {
  120. this.shopCarBallEl = target
  121. this.shopCarBall = true
  122. },
  123. // 动画开始
  124. beforeEnter(el) {
  125. // 获取元素的大小及其相对于视口的位置
  126. if (process.client) {
  127. const dom = this.shopCarBallEl.getBoundingClientRect()
  128. const comparePosition = document
  129. .querySelector('.compare-list')
  130. .getBoundingClientRect()
  131. const offsetX = comparePosition.left - dom.left
  132. const offsetY = dom.top - comparePosition.top - 20
  133. el.style.display = ''
  134. // y轴是曲直向上的,x轴是蜿蜒的向右的
  135. el.style.transform = `translate3D( -${offsetX}px,${offsetY}px,0)`
  136. }
  137. },
  138. enter(el, done) {
  139. // 触发重绘,来实现动画的移动过程
  140. if (process.client) {
  141. this.ss = document.body.offsetHeight
  142. el.style.transform = `translate3D( 0,0,0)`
  143. el.addEventListener('transitionend', done)
  144. }
  145. },
  146. afterEnter(el) {
  147. this.shopCarBall = false
  148. el.style.display = 'none'
  149. },
  150. },
  151. }
  152. </script>
  153. <style lang="scss" scoped>
  154. .card-wrap {
  155. display: grid;
  156. justify-items: center;
  157. justify-content: space-evenly;
  158. // grid-template-columns: repeat(5,1fr);
  159. }
  160. .middle_banner {
  161. width: 100%;
  162. height: 580px;
  163. margin: 0 0 30px;
  164. }
  165. .ball {
  166. position: fixed;
  167. top: 86px;
  168. right: 19%;
  169. width: 20px;
  170. height: 20px;
  171. border-radius: 50%;
  172. background: #e90000;
  173. transition: all 0.5s linear;
  174. z-index: 9999;
  175. .linner_ball {
  176. transition: all 0.5s linear;
  177. }
  178. }
  179. </style>