From e89b10852381b2dc3c83e147194bccdec9017172 Mon Sep 17 00:00:00 2001
From: xuxueyang <xuxy@fengyuntec.com>
Date: 星期五, 02 八月 2024 11:41:50 +0800
Subject: [PATCH] 1
---
pages/home/components/home-zones.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pages/home/components/home-zones.vue b/pages/home/components/home-zones.vue
index f7bb51b..7b2c3f6 100644
--- a/pages/home/components/home-zones.vue
+++ b/pages/home/components/home-zones.vue
@@ -1,12 +1,12 @@
<template>
<view class="home-zones">
- <view class="c" v-for="(item,index) of list">
+ <view class="c" v-for="(item,index) of list" @click.stop="toDetail(item.id)">
<image class="p1 img100 m-t-12" :lazy-load="true" mode="aspectFill"
:src="item.bgUrl">
</image>
<view class="c-txt-1">
<view class="title">{{ item.name }}</view>
- <view class="flex" @click.stop="toDetail(item.id)">
+ <view class="flex">
<view class="desc">查看详情</view>
<view class="right m-l-5">
<uni-icons class="icon" type="right" color="#C3B8A0" size="12"></uni-icons>
@@ -75,7 +75,7 @@
methods: {
toDetail(id) {
uni.navigateTo({
- url: `//sub_pages/customer/trade/list?zoneId=${id}`
+ url: `/sub_pages/customer/trade/list?zoneId=${id}`
})
},
},
--
Gitblit v1.9.3