From d889eaf990af99c06970e51f2bc421ac0015489c Mon Sep 17 00:00:00 2001 From: ZZJ <zzjdsg2300@163.com> Date: 星期四, 05 五月 2022 13:30:31 +0800 Subject: [PATCH] bug修复 --- src/views/index/components/commendContent.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/index/components/commendContent.vue b/src/views/index/components/commendContent.vue index c0f8693..1074544 100644 --- a/src/views/index/components/commendContent.vue +++ b/src/views/index/components/commendContent.vue @@ -8,10 +8,10 @@ v-for="(item, index) in commendData" :key="index" > - <img :src="'/httpImage/' + item.logoUrl" alt="" /> + <ImageShow :src="item.logoUrl"> </ImageShow> <div class="title">{{ item.productName }}</div> - <div class="des limitoRow2">{{ item.description }}</div> - <price :priceNew="item.priceBase"></price> + <div class="des limitRow2">{{ item.description }}</div> + <price :priceNew="item.priceBase ? item.priceBase : 0"></price> <div class="button" @click="buyProduct(item.productName)">绔嬪嵆璐拱</div> </div> </div> -- Gitblit v1.8.0