mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-uniapp.git
synced 2026-08-06 10:57:25 +08:00
21 lines
455 B
Vue
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>
|