修改商品详情中发现的展示问题

This commit is contained in:
lemon橪
2022-06-01 11:30:23 +08:00
committed by 学习很差啦
parent a393910c0a
commit 3f0e34b715
3 changed files with 14 additions and 14 deletions

View File

@@ -1,14 +1,14 @@
<template>
<view class="recommend-box" >
<h4 class="goods-recommend-title">宝贝推荐</h4>
<goodsList :res='res' :storeName="false" />
<goodsList :res='res' v-if="res" :storeName="false" />
</view>
</template>
<script>
<script>
import goodsList from '@/components/m-goods-list/list.vue'
export default {
props: ["res"],
props: ["res"],
components:{goodsList},
methods: {
}