From ded34e37fca5e2e05e17693d2524c3d664ebf017 Mon Sep 17 00:00:00 2001 From: xuxueyang <xuxy@fengyuntec.com> Date: 星期三, 14 八月 2024 11:20:18 +0800 Subject: [PATCH] update 搜索历史 --- pages/home/components/home-zones.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/home/components/home-zones.vue b/pages/home/components/home-zones.vue index f7bb51b..c375985 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="c-txt-1" v-show="false"> <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