You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
526 B

7 months ago
  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>