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.
33 lines
706 B
33 lines
706 B
9 months ago
|
<template>
|
||
|
<view class="goods-scroll-box">
|
||
|
<scroll-view class="scroll-box" scroll-x scroll-anchoring>
|
||
|
<view class="goods-box ss-flex">
|
||
|
<view v-for="(item, index) in list" :key="index">
|
||
|
<s-goods-column
|
||
|
class="goods-card ss-m-l-20"
|
||
|
size="sm"
|
||
|
:data="item"
|
||
|
:titleWidth="200 - marginLeft - marginRight"
|
||
|
></s-goods-column>
|
||
|
</view>
|
||
|
</view>
|
||
|
</scroll-view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
/**
|
||
|
* 商品组 - 横向滚动商品
|
||
|
*/
|
||
|
const props = defineProps({
|
||
|
list: {
|
||
|
type: Array,
|
||
|
default() {
|
||
|
return [];
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped></style>
|