|
@@ -113,7 +113,10 @@ onShow(async () => {
|
|
|
<div class="absolute top-11 left-0 right-0 bottom-0 bg-white rounded-2xl shadow">
|
|
|
<SwiperEvo v-model="current" :items="favourableProducts">
|
|
|
<template #default="{ item: it }">
|
|
|
- <div class="w-full h-full px-4 flex items-center gap-3 box-border">
|
|
|
+ <div
|
|
|
+ class="w-full h-full px-4 flex items-center gap-3 box-border"
|
|
|
+ @click="router.push(`/pages/home/mall/detail/index?id=${it.productId}`)"
|
|
|
+ >
|
|
|
<wd-img
|
|
|
width="114"
|
|
|
height="114"
|
|
@@ -151,7 +154,9 @@ onShow(async () => {
|
|
|
积分
|
|
|
</div>
|
|
|
<div class="flex-1"></div>
|
|
|
- <div @click="router.push(`/pages/home/mall/detail/index?id=${it.productId}`)">
|
|
|
+ <div
|
|
|
+ @click.stop="router.push(`/pages/home/mall/detail/index?id=${it.productId}`)"
|
|
|
+ >
|
|
|
<wd-img width="106" height="40" :src="grabNow"></wd-img>
|
|
|
</div>
|
|
|
</div>
|