Files
lilishop-uniapp/pages/product/product/goods/-goods-recommend.vue
2026-07-01 16:05:08 +08:00

21 lines
455 B
Vue

<template>
<view class="recommend-box" v-if="res && res.length">
<h4 class="goods-recommend-title">热门商品</h4>
<goodsList :res='res' :storeName="false" :tabBarGap="false" />
</view>
</template>
<script>
import goodsList from '@/components/m-goods-list/list.vue'
export default {
props: ["res"],
components:{goodsList},
methods: {
}
};
</script>
<style lang="scss" scoped>
@import "../product.scss";
</style>