about.vue
1.95 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
<template>
<div class="about_container">
<NafmHeader navClass="nafmii-head-bg3" :title="$t('title.privacyPolicy')" />
<div class="about_content">
<img :src="logoIcon" alt="">
<h3>中国银行间市场交易商协会</h3>
<div class="version">Version 2.1</div>
<p>
中国银行间市场交易商协会是由市场参与者自愿组成的,包括银行间债券市场、同业拆借市场、外汇市场、票据市场和黄金市场在内的银行间市场的自律组织,会址设在北京。协会英文名称为National Association of Financial Market Institutional
Investors,缩写为NAFMII。协会经国务院同意、民政部批准于2007年9月3日成立,为全国性的非营利性社会团体法人,其业务主管部门为中国人民银行。协会会员包括单位会员和个人会员,银行间债券市场、拆借市场、外汇市场、票据市场和黄金市场的参与者、中介机构及相关领域的从业人员和专家学者均可自愿申请成为协会会员。协会单位会员将涵盖政策性银行、商业银行、信用社、保险公司、证券公司、信托公司、投资基金、财务公司、信用.评级公司、大中型工商企业等各类金融机构和非金融机构。
</p>
</div>
</div>
</template>
<script>
export default {
name: 'About',
data() {
return {
logoIcon: require('@/assets/icon/logo_2.png')
}
}
}
</script>
<style lang="less" scoped>
.about_container {
background: #fff;
height: 100vh;
}
.about_content {
display: flex;
flex-direction: column;
align-items: center;
img {
width: 59px;
height: 56px;
margin-top: 30px;
}
h3 {
color: #333;
font-size: 16px;
margin-top: 15px;
}
.version {
color: #666;
font-size: 14px;
margin-top: 3px;
}
p {
width: 384px;
text-align: justify;
line-height: 27px;
color: #666;
font-size: 15px;
margin-top: 20px;
}
}
</style>