|
|
|
@ -37,7 +37,7 @@ |
|
|
|
<view v-else-if="userList.length>0 && type==1" class="cate-right-cont"> |
|
|
|
<view class="cate-two-box"> |
|
|
|
<view class="cate-cont-box"> |
|
|
|
<view class="flex-two-data" v-for="(item, idx) in userList" :key="idx" @click="onGoodsList(item.user.name)"> |
|
|
|
<view class="flex-two-data" v-for="(item, idx) in userList" :key="idx" @click="onGoodsList(item.user.name,item.goods_count)"> |
|
|
|
<view class="cate-two-img-padding"> |
|
|
|
<view v-if="item.user.doorHeadPhoto" class="cate-two-img"> |
|
|
|
<image class="two-image" mode="scaleToFill" :src="item.user.doorHeadPhoto"></image> |
|
|
|
@ -305,8 +305,12 @@ |
|
|
|
this.$navTo('pages/goods/detail', { gislicode }) |
|
|
|
}, |
|
|
|
// 跳转店铺列表 |
|
|
|
onGoodsList(spname){ |
|
|
|
this.$navTo("pages/goods/list?k="+spname+'&dt='+new Date().getTime()) |
|
|
|
onGoodsList(spname,count){ |
|
|
|
if (count > 0) { |
|
|
|
this.$navTo("pages/goods/list?k="+spname+'&dt='+new Date().getTime()) |
|
|
|
} else { |
|
|
|
this.$error('该店铺不存在标的信息!') |
|
|
|
} |
|
|
|
}, |
|
|
|
// 跳转资讯中心 |
|
|
|
onConsulting(consultingId){ |
|
|
|
|