From 15805c213498f376f810785f7f4c831e73f9f9f0 Mon Sep 17 00:00:00 2001 From: Junling Bu Date: Wed, 10 Jul 2019 19:32:16 +0800 Subject: [PATCH] =?UTF-8?q?chore[litemall-vue]:=20=E5=B1=95=E7=A4=BAbanner?= =?UTF-8?q?=EF=BC=8C=E8=80=8C=E4=B8=8D=E6=98=AFbrand?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- litemall-vue/src/views/home/tabbar-home.vue | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/litemall-vue/src/views/home/tabbar-home.vue b/litemall-vue/src/views/home/tabbar-home.vue index 6fb18b46..383a336b 100755 --- a/litemall-vue/src/views/home/tabbar-home.vue +++ b/litemall-vue/src/views/home/tabbar-home.vue @@ -5,12 +5,11 @@ @click="$router.push({ name: 'search' })" />
- - - @@ -160,7 +159,6 @@ export default { data() { return { - brandList: [], shopInfos: [], isLoading: false }; @@ -191,10 +189,6 @@ export default { initViews() { getHome().then(res => { this.shopInfos = res.data.data; - this.brandList = []; - _.each(res.data.data.brandList, v => { - this.brandList.push(v.picUrl); - }); }); } },