jufubao-mall 2.0.35-beta5 → 2.0.35-beta7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -108,14 +108,14 @@
|
|
|
108
108
|
v-for="item in nearbyShopList"
|
|
109
109
|
:key="item.key"
|
|
110
110
|
:id="`scroll-${item.resource_shop_id}`"
|
|
111
|
-
@click
|
|
111
|
+
@click="handleToEvent(item, 'shop')"
|
|
112
112
|
>
|
|
113
113
|
<view class="shop_list-item-title">
|
|
114
114
|
<view class="title">
|
|
115
115
|
<view>{{item.resource_shop_name}}</view>
|
|
116
116
|
<view class="active" v-if="resource_shop_id === item.resource_shop_id">正在预览</view>
|
|
117
117
|
</view>
|
|
118
|
-
<view @click="handleToEvent(item, 'detail')">
|
|
118
|
+
<view @click.stop="handleToEvent(item, 'detail')">
|
|
119
119
|
<text>详情</text>
|
|
120
120
|
<xd-font-icon icon="iconxiangyou_xian" color="#999" size="30" width="26" height="26"></xd-font-icon>
|
|
121
121
|
</view>
|