brand-list-box.vue
1.03 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
<template>
<tab :page="page"></tab>
<brand-search></brand-search>
<resources :content-code.sync="contentCode"></resources>
<brand-list :channel="channel"></brand-list>
</template>
<script>
const contentCode = require('content-code');
const qs = require('yoho-qs');
const cookie = require('yoho-cookie');
const tab = require('channel/tab.vue');
const resources = require('component/resources/index.vue');
const brandList = require('channel/brand-list.vue');
const brandSearch = require('channel/brand-search.vue');
const detaultChannel = qs.channel || cookie.get('_Channel') || 'men';
module.exports = {
data() {
return {
page: 'brand',
channel: detaultChannel,
contentCode: contentCode.brand[detaultChannel]
};
},
components: {
tab,
brandSearch,
resources,
brandList
}
};
</script>
<style>
#brand-list {
padding-top: 90px;
}
</style>