...
|
...
|
@@ -7,18 +7,21 @@ |
|
|
<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',
|
|
|
contentCode: contentCode.brand[qs.channel || 'men']
|
|
|
channel: detaultChannel,
|
|
|
contentCode: contentCode.brand[detaultChannel]
|
|
|
};
|
|
|
},
|
|
|
components: {
|
...
|
...
|
|