detail.vue
2.5 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
<template>
<div class="detail_container">
<NafmHeader navClass="nafmii-head-bg3" title="资质查询" />
<section class="detail_content">
<van-cell-group class="">
<van-cell>
<span slot="title" class="detail_title">{{qulificationDetail.name}}</span>
<span class="org_type">{{$t('qulification.orgType')}}:{{qulificationDetail.orgType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">{{$t('qulification.membership')}}</span>
<span class="info">是</span>
</van-cell>
<van-cell>
<span slot="title" class="label">{{$t('qulification.membershipType')}}</span>
<span class="info">{{qulificationDetail.memberType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">{{$t('qulification.underwriterType')}}</span>
<span class="info">{{qulificationDetail.memberType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">{{$t('qulification.marketmaker')}}</span>
<span class="info">{{qulificationDetail.memberType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">{{$t('qulification.mitigation')}}</span>
<span class="info">{{qulificationDetail.memberType}}</span>
</van-cell>
<van-cell>
<span slot="title" class="label">{{$t('qulification.masterAgree')}}</span>
<span class="info">
<div class="master_agreement" @click="toMasterAgreement">《NAFMII主协议》</div>
{{qulificationDetail.memberType}}
</span>
</van-cell>
</van-cell-group>
</section>
</div>
</template>
<script>
export default {
name: 'QulificationDetail',
data() {
return {
qulificationDetail: {
name: '中国银行诏安支行',
orgType: 'XXXX',
isMember: true,
memberType: '投资人',
}
}
},
methods: {
toMasterAgreement() {
this.$router.push({name: 'MasterAgreement'})
}
}
}
</script>
<style lang="less" scoped>
.detail_content {
.detail_title {
font-size: 16px;
color: #222222;
font-family: PingFangSC-Semibold;
border-left: 2.5px solid #135faa;
padding-left: 5px;
}
.org_type {
color: #999999;
font-size: 14px;
}
.label {
font-size: 14px;
color: #161818;
}
.info {
font-size: 14px;
color: #666666;
}
.master_agreement {
color: #245fae;
text-decoration: underline;
}
}
</style>