channel-home.vue
3.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<template>
<div class="channel-home">
<search-slider v-model="searchSlider"></search-slider>
<layout-body class="page-detail">
<header-box slot="header" class="channel-header">
<span slot="title">
{{title[gender]}}
</span>
<span slot="right">
<i class="icon icon-search-new" @click="searchSliderSwitch"></i>
</span>
</header-box>
<scroller ref="scroller" @loading="loading" class="channel-scroll">
<component
:is="component.template_name"
v-for="(component, index) in (floors || []).filter(c => ['twoPicture', 'goods', 'tfGoodsList', 'focus', 'blkCategory', 'newSingleImage', 'BlkNewProductFloorResource'].some(k => k === c.template_name) )"
:lazy="index > 5"
:value="component"
:index="index"
:key="index"></component>
</scroller>
</layout-body>
</div>
</template>
<script>
import {
SET_GENDER,
FETCH_CHANNEL_REQUEST,
} from 'store/channel/types';
import {REPORT_YAS} from 'store/yoho/types';
import {mapState} from 'vuex';
import {
ResourceGoods,
ResourceTwoImage,
ResourceCategory,
ResourceFocusImage,
ResourceSingleImage,
ResourceProductList,
ResourceBlkNewProductList,
ResourceTfGoodsList
} from 'components/resources';
import {SearchSlider} from 'components/search';
export default {
name: 'ChannelHome',
data() {
return {
searchSlider: false,
title: {
men: '男士',
women: '女士'
}
};
},
methods: {
searchSliderSwitch() {
this.searchSlider = !this.searchSlider;
if (this.searchSlider) {
this.$store.dispatch(REPORT_YAS, {
params: {
appop: 'YB_SECOND_HOME_BLK_SEARCH_C',
param: {
POS_ID: this.gender === 'men' ? 103 : 102
}
}
});
}
},
async loading() {
await this.$store.dispatch(FETCH_CHANNEL_REQUEST, {refresh: true});
this.$refs.scroller.stop();
}
},
computed: {
...mapState(['channel']),
gender() {
return this.$store.state.channel.gender;
},
floors() {
return this.$store.state.channel[this.gender].floors;
}
},
beforeRouteEnter(to, from, next) {
next(vm => {
if (vm.$yoho && vm.$yoho.isAndroid) {
vm.$yoho.blkBackStatus(true);
}
});
},
asyncData({store, router: to}) {
const gender = /\/channel\/men/.test(to.path) ? 'men' : 'women';
store.commit(SET_GENDER, gender);
return store.dispatch(FETCH_CHANNEL_REQUEST, {gender});
},
components: {
goods: ResourceGoods,
focus: ResourceFocusImage,
twoPicture: ResourceTwoImage,
newSingleImage: ResourceSingleImage,
blkCategory: ResourceCategory,
BlkNewProductFloorResource: ResourceBlkNewProductList,
tfGoodsList: ResourceTfGoodsList,
ResourceProductList,
SearchSlider
}
};
</script>
<style lang="scss">
.channel-scroll {
padding-bottom: 20px;
}
.channel-header {
.icon-search-new {
font-size: 42px !important;
}
}
</style>