|
|
@@ -189,6 +189,7 @@
|
|
|
v-if="isActiveSlide(index) && goodsListOf(clip).length > 0"
|
|
|
class="reel-goods"
|
|
|
@click.stop
|
|
|
+ @tap.stop
|
|
|
>
|
|
|
<scroll-view
|
|
|
class="reel-goods-scroll"
|
|
|
@@ -202,6 +203,7 @@
|
|
|
:key="goods.id || gIndex"
|
|
|
class="reel-goods-item"
|
|
|
:style="{ width: Math.round(frameW * 0.8) + 'px' }"
|
|
|
+ @tap.stop="onGoodsTap(goods)"
|
|
|
>
|
|
|
<image
|
|
|
class="reel-goods-img"
|
|
|
@@ -212,7 +214,7 @@
|
|
|
<text class="reel-goods-title" :lines="2">{{ goods.title || '' }}</text>
|
|
|
<view class="reel-goods-foot">
|
|
|
<text class="reel-goods-price">HKD{{ goods.price }}</text>
|
|
|
- <view class="reel-goods-buy" @click.stop="onGoodsTap(goods)">
|
|
|
+ <view class="reel-goods-buy">
|
|
|
<text class="reel-goods-buy-txt">{{ copy.buy }}</text>
|
|
|
</view>
|
|
|
</view>
|