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);
- });
});
}
},