|
|
|
@ -20,9 +20,9 @@ |
|
|
|
<div v-if="goodsList.length != 0" v-for="(item,index) in goodsList" :key="index" class="food-list-hook"> |
|
|
|
<p class="title">{{item.combinationName}}</p> |
|
|
|
<div class="f-relative f-all-1px" v-for="(goods,k) in item.goodsList" :key="k"> |
|
|
|
<a style="display:block" :href="'/mall/web/vgoods/detail/' + goods.goodsNo + '?uniqueId='+ uniqueId"> |
|
|
|
<a style="display:block" :href="'/mall/web/vgoods/detail/' + goods.goodsNo "> |
|
|
|
<div class="item f-flex"> |
|
|
|
<a :href="'/mall/web/vgoods/detail/' + goods.goodsNo + '?uniqueId='+ uniqueId" class="list-img-box"> |
|
|
|
<a :href="'/mall/web/vgoods/detail/' + goods.goodsNo" class="list-img-box"> |
|
|
|
<img v-if="goods.goodsTitleImg!=''" :src=" imghost + goods.goodsTitleImg" class="thumb"/> |
|
|
|
<img v-else-if="goods.showImg!=''" :src=" imghost + goods.showImg" class="thumb"/> |
|
|
|
<img v-else :src=" imghost + goods.bannerImgs" class="thumb"/> |
|
|
|
@ -62,7 +62,6 @@ import Qs from 'qs'; |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
uniqueId:'', |
|
|
|
no: 0, |
|
|
|
id: 0, |
|
|
|
c_no: 0, |
|
|
|
@ -261,7 +260,6 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
this.uniqueId =this.$cookies.get('1hjz_mall_unique_id') |
|
|
|
this.getParams(); |
|
|
|
this.ShareWenXin(); |
|
|
|
} |
|
|
|
|