first-one.vue 526 B

1234567891011121314151617181920212223242526
  1. <!-- 分类展示:first-one 风格 -->
  2. <template>
  3. <view class="ss-flex-col">
  4. <view class="goods-box" v-for="item in pagination.list" :key="item.id">
  5. <s-goods-column
  6. size="sl"
  7. :data="item"
  8. @click="sheep.$router.go('/pages/goods/index', { id: item.id })"
  9. />
  10. </view>
  11. </view>
  12. </template>
  13. <script setup>
  14. import sheep from '@/sheep';
  15. const props = defineProps({
  16. pagination: Object,
  17. });
  18. </script>
  19. <style lang="scss" scoped>
  20. .goods-box {
  21. width: 100%;
  22. }
  23. </style>