From bc3f2da328975fea99b4f6528bd96fdfc71fd2e4 Mon Sep 17 00:00:00 2001 From: xuxueyang <xuxy@fengyuntec.com> Date: 星期四, 05 九月 2024 15:50:25 +0800 Subject: [PATCH] 1 --- pages/home/components/home-zones.vue | 16 ++++++++++------ 1 files changed, 10 insertions(+), 6 deletions(-) diff --git a/pages/home/components/home-zones.vue b/pages/home/components/home-zones.vue index 30b2c15..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"> - <image class="p1 img100 m-t-12" :lazy-load="true" mode="aspectFit" + <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,15 +75,19 @@ methods: { toDetail(id) { uni.navigateTo({ - url: `//sub_pages/customer/trade/list?zoneId=${id}` + url: `/sub_pages/customer/trade/list?zoneId=${id}` }) }, }, - onLoad() { + mounted() { + console.log('init hone zones') this.$http.request('get', '/api/flower/zone/list', {}).then(res => { this.list = res.data || [] }) }, + onLoad() { + + }, } </script> -- Gitblit v1.9.3