about.vue
3.08 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
<template>
<layout-body class="page-about">
<header-box slot="header">
<span slot="title">
ABOUT BLK
</span>
</header-box>
<div class="brief">
<p class="paragraph"><i>BLK</i>是<i>YOHO!</i>旗下高端零售平台,<i>2017</i>年<i>9</i>月<i>BLK</i>以革新的购物概念出现于大众视野。<i>BLK</i>拥有便捷品质的网上商店,
以人物、音乐、艺术等角度结合品牌精髓述说隐于商品之内的特有文化;与其呼应实体店铺提供个人化的造型服务与精致的玩乐享受。</p>
<p class="paragraph">
伴随年轻一代对潮流/街头/时尚/奢侈概念的改变,<i>BLK</i>定义了一个新的概念——“新街头主义”风格,即是展现一种独立个性的风格与真实的生活态度。
以独特的视角在不同设计师品牌中寻找街头元素单品,以创意的方式在网上商店与实体店铺中呈现。</p>
<p class="paragraph"><i>BLK</i>买手团队引入众多国际设计师品牌同时携手国内设计新星,为年轻的消费者们提供进阶品味的且多元化的商品选择。</p>
<p class="paragraph"><i>BLK</i>致力呈现其对街头的独特见解,以“新街头主义”携手国内外设计师与年轻的时尚潮流爱好者们共同推动中国时尚潮流的发展与更优质的时尚潮流体验。</p>
</div>
<resource-box>
<component
:is="component.template_name"
v-for="(component, index) in channel.about.filter(c => ['newSingleImage'].some(k => k === c.template_name) )"
:value="component"
:index="index"
:key="index"></component>
</resource-box>
</layout-body>
</template>
<script>
import {
FETCH_ABOUT_REQUEST
} from 'store/channel/types';
import {mapState} from 'vuex';
import {
ResourceSingleImage
} from 'components/resources';
import ResourceBox from 'components/resources/resource-box';
export default {
name: 'About',
data() {
return {};
},
computed: {
...mapState(['channel']),
},
beforeRouteEnter(to, from, next) {
next(vm => {
if (vm.$yoho && vm.$yoho.isAndroid) {
vm.$yoho.blkBackStatus(true);
}
});
},
asyncData({store}) {
return store.dispatch(FETCH_ABOUT_REQUEST);
},
components: {
newSingleImage: ResourceSingleImage,
ResourceBox
}
};
</script>
<style lang="scss">
.page-about {
.brief {
padding-top: 24px;
padding-bottom: 1px;
}
.paragraph {
font-size: 24px;
padding: 0 20px;
margin-bottom: 36px;
text-indent: 1em;
line-height: 36px;
font-family: "HiraginoSansGB-W3";
i {
font-family: "HelveticaNeue-Bold";
font-weight: bolder;
font-style: normal;
}
}
}
</style>