index.vue 804 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div class="com-main com-margin-auto com-width-1400">
  3. <section class="com-width-1200 com-margin-auto">
  4. <pc-title :title="'Related ltems'"></pc-title>
  5. <div class="card-wrap com-margin-auto">
  6. <card v-for="(item, k) in indexGoodsRankLists" :key="k" :cardData="item"></card>
  7. </div>
  8. </section>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. layout:'default',
  14. data() {
  15. return {
  16. };
  17. },
  18. async asyncData({ $axios }) {
  19. let indexGoodsRankLists = await $axios.post("home/indexGoodsRankLists", {
  20. site: 1,
  21. });
  22. return {
  23. indexGoodsRankLists: indexGoodsRankLists.result,
  24. };
  25. },
  26. methods:{
  27. },
  28. };
  29. </script>
  30. <style lang="scss" scoped>
  31. .card-wrap {
  32. display: grid;
  33. justify-items: center;
  34. }
  35. </style>