12345678910111213141516171819202122232425262728293031323334 |
- <!-- 分类展示:first-one 风格 -->
- <template>
- <view class="ss-flex-col">
- <view class="goods-box" v-for="item in pagination.list" :key="item.id">
- <s-goods-column
- size="sl"
- :data="item"
- @click="sheep.$router.go('/pages/goods/index', { id: item.id,merchantId,shopId })"
- />
- </view>
- </view>
- </template>
- <script setup>
- import sheep from '@/sheep';
- const props = defineProps({
- pagination:{
- type: Object,
- },
- shopId:{
- type: String,
- },
- merchantId:{
- type: String,
- },
- });
- </script>
- <style lang="scss" scoped>
- .goods-box {
- width: 100%;
- }
- </style>
|